In StringTools.h there is a function for dragon/camelcasing a string. 2 actually, one mutably modifies a range and another immutably copies.
Functions like this would be easy to make for other common programmer styles, and I would have used them a few times:
dragon case/pascal case - Every Word Is Upper Case.
camel case - every Word But The First Is Upper Case.
snake case - all_lower_case_with_underscores
kebab case - all-lower-case-with-dashes
screaming dragon or screaming snake case - ALL_UPPER_CASE_WITH_UNDERSCORES
In StringTools.h there is a function for dragon/camelcasing a string. 2 actually, one mutably modifies a range and another immutably copies.
Functions like this would be easy to make for other common programmer styles, and I would have used them a few times:
dragon case/pascal case - Every Word Is Upper Case.
camel case - every Word But The First Is Upper Case.
snake case - all_lower_case_with_underscores
kebab case - all-lower-case-with-dashes
screaming dragon or screaming snake case - ALL_UPPER_CASE_WITH_UNDERSCORES