TitleCaseInPlace
Title-cases the string in place.
Module: Std
Signature
rux
func TitleCaseInPlace(self);Description
Mutates the receiver's existing buffer, uppercasing the first letter of each space-separated word and lowercasing the rest. Unlike TitleCase, it allocates nothing and returns nothing.
See also
String— the string typeTitleCase— the copying variantCapitalizeInPlace— capitalize only the first word in place