cfunction
src/core/string.c on line 615 , column 1
(string/triml str &opt set )
Trim leading whitespace from a byte sequence. If the argument `set`
is provided , consider only characters in `set` to be whitespace.
(string/triml " foo " ) # => "foo "
(string/triml "_!_foo_!_" "_!" ) # => "foo_!_"