toLower package:jsaddle
O(n) Convert a string to lower case, using simple case
conversion. Subject to fusion.
The result string may be longer than the input string. For instance,
"İ" (Latin capital letter I with dot above, U+0130) maps to the
sequence "i" (Latin small letter i, U+0069) followed by " ̇"
(combining dot above, U+0307).
O(n) Convert a string to lower case, using simple case
conversion. The result string may be longer than the input string. For
instance, the Latin capital letter I with dot above (U+0130) maps to
the sequence Latin small letter i (U+0069) followed by combining dot
above (U+0307).
Properties
unstream . toLower . stream = toLower