cfunction
src/core/string.c on line 467 , column 1
(string/check-set set str )
Checks that the string `str` only contains bytes that appear in the
string `set` . Returns true if all bytes in `str` appear in `set` ,
false if some bytes in `str` do not appear in `set` .
(string/check-set "0123456789abcdef" "deadbeef" ) # => true