4 Utilities for Strings
| (require lathe-comforts/string) | |
| package: lathe-comforts-lib | |
procedure
(immutable-string? v) → boolean?
v : any/c
Returns whether the given value is an immutable string.
Equivalent to (and (string? v) (immutable? v)).
| immutable- |
| (require lathe-comforts/string) | |
| package: lathe-comforts-lib | |
procedure
(immutable-string? v) → boolean?
v : any/c
Equivalent to (and (string? v) (immutable? v)).