camelCasedToLower

Convert D-style camel-cased string $(S s) to lower-cased words.

camelCasedToLower
(
S
)
(
S s
)
if (
isSomeString!S
)

Examples

auto x = "doThis".camelCasedToLower;
assert(x.front.equal("do"));
x.popFront();
assert(x.front.equal("this"));

Meta