Convert D-style camel-cased string $(S s) to lower-cased words.
auto x = "doThis".camelCasedToLower; assert(x.front.equal("do")); x.popFront(); assert(x.front.equal("this"));
See Implementation
Convert D-style camel-cased string $(S s) to lower-cased words.