We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: