You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vectorised over string, pre-/postprocess, pre-/postfix and protect arguments
groups of digits are not separated in between. Digits, which are not direct next to each other, will be split via "_" in both camel case versions. Otherwise information would be lost and also the consistency rules in the readme wouldn't hold in this case.
to_parsed_case_internal()
does the preprocessing and parsing and simplifies all other functions.
shortcuts:
to_snake_case(), to_small_camel_case(), to_big_camel_case(), to_screaming_snake_case() and to_parsed_case(), which are equivalent to to_any_case(string, case).
Documentation
githubpage contains a readme (including a logo and badges for cran status, codecoverage etc.), which describes the usage and also the design philosophy
added a vignette
added documentation and examples for all functions
Tests
added systematic tests
added integrated tests on linux via travis.ci and on windows via appveyor