simstr 1.7.3
Yet another strings library
 
Loading...
Searching...
No Matches
simstr::e_upper< K > Struct Template Reference

Generates a string based on the original one, replacing all lowercase letters of the first Unicode plane with uppercase ones. More...

#include <sstring.h>

Detailed Description

template<is_one_of_char_v K>
struct simstr::e_upper< K >

Generates a string based on the original one, replacing all lowercase letters of the first Unicode plane with uppercase ones.

Template Parameters
K- character type, inferred based on the source string.

Takes the original string and copies it, replacing the lowercase letters of the first Unicode plane with uppercase ones. Any string object can be taken as the source string. Example

stringa upper = "Upper case version is: '" + e_upper(source_str) + "'.";
Generates a string based on the original one, replacing all lowercase letters of the first Unicode pl...
Definition sstring.h:5128

The documentation for this struct was generated from the following file: