mes: Add char-whitespace?
* module/srfi/srfi-14.mes (char-whitespace?): New function.
This commit is contained in:
parent
0d0c7a415b
commit
d052876f85
|
@ -49,3 +49,6 @@
|
|||
|
||||
(define (char-set-contains? cs x)
|
||||
(and (memq x cs) #t))
|
||||
|
||||
(define (char-whitespace? c)
|
||||
(char-set-contains? char-set:whitespace c))
|
||||
|
|
Loading…
Reference in a new issue