cfunction
(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