ToLower
Returns a copy with ASCII letters lowercased.
Module: Text
Signature
rux
func ToLower(self) -> String;Returns
A new String in which every byte from A to Z is lowercased, in a block of its own. The receiver is left untouched, and the empty string yields the empty string.
The fold is ASCII only, on the same terms as ToUpper: every other byte is copied through untouched, so the multi-byte sequences of a UTF-8 string survive intact but do not case fold.
Example
rux
import Text::String;
var text = String::From("Hello, Rux!");
var quiet = text.ToLower(); // "hello, rux!"
quiet.Free();
text.Free();