ToLowerInPlace
Lowercases ASCII letters in place.
Module: Std
Signature
rux
func ToLowerInPlace(self);Description
Mutates the receiver's existing buffer, converting each ASCII uppercase letter (A–Z) to lowercase; all other bytes are left as-is. Unlike ToLower, it allocates nothing and returns nothing.
See also
String— the string typeToLower— the copying variantToUpperInPlace— the uppercase counterpart