Next: SRFI-14 Querying Character Sets, Previous: SRFI-14 Iterating Over Character Sets, Up: SRFI-14
New character sets are produced with these procedures.
Return a newly allocated character set containing all characters in cs.
Convert the character list list to a character set. If the character set base is given, the character in this set are also included in the result.
Add the characters in list to character set base and return it.
Convert the string str to a character set. If the character set base is given, the characters in this set are also included in the result.
Add characters in string str to character set base and return it.
Return a character set containing every character from cs that satisfies pred. If provided, the characters from base are added to the result.
Return a character set containing every character from cs that satisfies pred. The characters are added to base and base is returned.
Return a character set containing all characters whose character codes lie in the half-open range [lower,upper).
If error is a true value, an error is signalled if the specified range contains characters which are not contained in the implemented character range. If error is
#f, these characters are silently left out of the resulting character set.The characters in base are added to the result, if given.
Return a character set containing all characters whose character codes lie in the half-open range [lower,upper).
If error is a true value, an error is signalled if the specified range contains characters which are not contained in the implemented character range. If error is
#f, these characters are silently left out of the resulting character set.The characters are added to base and base is returned.