xieite ::toupper ()
Defined in header <xieite/ctnr/toupper.hpp>
Converts every character of a string (or a single character) to uppercase.
Only handles the English alphabet.
Declarations
#0Makes a single character uppercase. Internally uses a lookup table.template <xieite ::is_ch Ch > [[nodiscard ]]constexpr Ch toupper (Ch c )noexcept ;
#1
Makes an entire string uppercase. Internally calls #0.template <typename Ch ,typename Traits =std ::char_traits <Ch >,typename Alloc =std ::allocator <Ch >> [[nodiscard ]]constexpr std ::basic_string <Ch ,Traits ,Alloc >toupper (std ::basic_string_view <Ch ,Traits >strv ,Alloc && alloc = {})noexcept (false );
#2
Defers to #1 after deducingtemplate <typename Ch ,typename Traits =std ::char_traits <Ch >,typename Alloc =std ::allocator <Ch >> [[nodiscard ]]constexpr auto toupper (const std ::basic_string <Ch ,Traits ,Alloc >& str ,Alloc && alloc = {})XIEITE_ARROW (xieite ::toupper (xieite ::str_view (str ),XIEITE_FWD (alloc )))
Ch
, Traits
, and Alloc
.#3
Defers to #1 after deducingtemplate <xieite ::is_ch Ch ,typename Traits =std ::char_traits <Ch >,typename Alloc =std ::allocator <Ch >,std ::size_t n > [[nodiscard ]]constexpr auto toupper (const Ch (& str )[n ],Alloc && alloc = {})XIEITE_ARROW (xieite ::toupper (xieite ::str_view <Ch ,Traits >(str ),XIEITE_FWD (alloc )))
Ch
and possibly Alloc
.Example
Output:int main () {xieite ::dump (xieite ::toupper ("HeLlO, wOrLd!" )); }
[View in Compiler Explorer]HELLO, WORLD!