Determine if a unicode character is part of the ASCII subset.
ASCII characters have code points in the range U+0000-U+007F. (Note: the Unicode standard) does not mention ASCII and instead calls this subset "C0 Controls and Basic Latin".)
Instances For
Construct the string consisting of n copies of the character c.
Instances For
String.mapTokens c f s tokenizes s : string on c : char, maps f over each token, and
then reassembles the string by intercalating the separator token c over the mapped tokens.
Instances For
Produce the head character from the string s, if s is not empty, otherwise 'A'.