toUpperAscii overloads
Declared in <folly/String.h>
Convert ascii to uppercase in place over a mutable string piece.
void
toUpperAscii(MutableStringPiece str);
» more...
Convert ascii to uppercase in place over a string.
void
toUpperAscii(std::string& str);
» more...
Convert ascii to uppercase, in-place.
void
toUpperAscii(
char* str,
size_t length);
» more...
| Name | Description |
|---|---|
| str | The piece to convert. |
| length | Length of str, in bytes |