123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- ; Copyright (c) 1993-2007 by Richard Kelsey and Jonathan Rees. See file COPYING.
- ; This constructs the SRFI 14 char sets from thin air and what's defined in
- ; srfi-14-base-char-sets.scm.
- ; Defined there:
- ; lower-case, upper-case, title-case, letter, digit, punctuation, symbol
- (define char-set:empty (char-set))
- (define char-set:full (char-set-complement char-set:empty))
- (define char-set:letter+digit
- (char-set-union char-set:letter char-set:digit))
- (define char-set:graphic
- (char-set-union char-set:mark
- char-set:letter
- char-set:digit
- char-set:symbol
- char-set:punctuation))
- (define char-set:whitespace
- (char-set-union char-set:separator
- (list->char-set (map scalar-value->char
- '(9 ; tab
- 10 ; newline
- 11 ; vtab
- 12 ; page
- 13 ; return
- )))))
- (define char-set:printing
- (char-set-union char-set:whitespace char-set:graphic))
- (define char-set:iso-control
- (char-set-union (ucs-range->char-set 0 #x20)
- (ucs-range->char-set #x7f #xa0)))
- (define char-set:blank
- (char-set-union char-set:space-separator
- (char-set (scalar-value->char 9)))) ; tab
- (define char-set:ascii (ucs-range->char-set 0 128))
- (define char-set:hex-digit (string->char-set "0123456789abcdefABCDEF"))
-
- (make-char-set-immutable! char-set:empty)
- (make-char-set-immutable! char-set:full)
- (make-char-set-immutable! char-set:lower-case)
- (make-char-set-immutable! char-set:upper-case)
- (make-char-set-immutable! char-set:letter)
- (make-char-set-immutable! char-set:digit)
- (make-char-set-immutable! char-set:hex-digit)
- (make-char-set-immutable! char-set:letter+digit)
- (make-char-set-immutable! char-set:punctuation)
- (make-char-set-immutable! char-set:symbol)
- (make-char-set-immutable! char-set:graphic)
- (make-char-set-immutable! char-set:whitespace)
- (make-char-set-immutable! char-set:printing)
- (make-char-set-immutable! char-set:blank)
- (make-char-set-immutable! char-set:iso-control)
- (make-char-set-immutable! char-set:ascii)
|