CapitalizationSourceCapitalization is a helper library for renaming strings according to case conventions.
type t = | Pascal_case| Camel_case| Snake_case| Capitalized_snake_case| Pascal_snake_case| Screaming_snake_case| Alternating_snake_case| Kebab_case| Capitalized_kebab_case| Pascal_kebab_case| Screaming_kebab_case| Alternating_kebab_case| Sentence_case| Title_case| Lower_sentence_case| Upper_sentence_case| Alternating_sentence_caseinclude Ppx_enumerate_lib.Enumerable.S with type t := tRe-capitalizes the input string according the convention in t.
The input string is assumed to use '_' to separate words, but can contain any mix of upper/lower case characters.
Capitalizes the input words according to the convention in t.
Contains a list of all of the options, for showing in error messages