Return Name converted to UpperCamelCase by removing separators.
Declared in <llvm/TableGen/DirectiveEmitter.h>
static
std::string
getUpperCamelName(
StringRef Name,
StringRef Sep);
Take a string Name with sub-words separated with characters from Sep, and return a string with each of the sub-words capitalized, and the separators removed, e.g. Name = "some_directive^name", Sep = "_^" -> "SomeDirectiveName".
Name converted to UpperCamelCase with separators removed.
| Name | Description |
|---|---|
| Name | Input name whose sub-words are separated by Sep. |
| Sep | Characters treated as sub-word separators. |