toLower overloads

Synopses

Declared in <bdlb_string.h>

Replace all upper case characters in the specified string having the optionally specified length with their lower‐case equivalent. The behavior is undefined unless 0 <= length (if specified) and string‐>size() <= INT_MAX (if applicable).

static
void
toLower(char* string);

Replace all upper case characters in the specified string with their lower‐case equivalent.

static
void
toLower(bsl::string* string);

Replace all upper case characters in the specified string with their lower‐case equivalent.

static
void
toLower(std::pmr::string* string);

Replace all upper case characters in the specified string with their lower‐case equivalent.

static
void
toLower(std::string* string);

Replace all upper case characters in the specified string having the specified length with their lower‐case equivalent.

static
void
toLower(
    char* string,
    int length);

Created with MrDocs