[#ToLower-0a] = ToLower :mrdocs: `ToLower` overloads == Synopses Declared in `<util/strencodings.h>` Converts the given character to its lowercase equivalent. This function is locale independent. It only converts uppercase characters in the standard 7‐bit ASCII range. This is a feature, not a limitation. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr char xref:ToLower-0c.adoc[ToLower](char c); ---- [.small]#xref:ToLower-0c.adoc[_» more..._]# Returns the lowercase equivalent of the given string. This function is locale independent. It only converts uppercase characters in the standard 7‐bit ASCII range. This is a feature, not a limitation. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string xref:ToLower-0f.adoc[ToLower](std::string_view str); ---- [.small]#xref:ToLower-0f.adoc[_» more..._]# == Return Value * the lowercase equivalent of c; or the argument if no conversion is possible. * lowercased equivalent of str == Parameters [cols="1,4"] |=== | Name| Description | *c* [in] | the character to convert to lowercase. | *str* [in] | the string to convert to lowercase. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#