xte ::lowercase ()
Defined in header <xte/data/lowercase.hpp> Converts a single character or every character of a range to its lowercase representation.
Definitions
#0[[nodiscard ]]constexpr char lowercase (char c )noexcept ;
#1
[[nodiscard ]]constexpr xte ::string lowercase (xte ::string_view string )noexcept (false );
#2
Requires thattemplate <std ::range ::input_range Range > [[nodiscard ]]constexpr Range lowercase (Range range )noexcept (/* ... */ );
Range is a range of char s and is mutable.Example
[View in Compiler Explorer]static_assert (xte ::lowercase ("HeLlO, wOrLd!" ) =="hello, world!" );