toLower package:rio

Convert a letter to the corresponding lower-case letter, if any. Any other character is returned unchanged.
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. Subject to fusion. 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).