Strings library
From cppreference.com
Contents |
Null-terminated byte string management
Null-terminated multibyte string management
Null-terminated wide string management
basic_string
| Defined in header <string>
|
||
| template< class CharT, |
||
The class basic_string generalizes the way how sequences of characters are manipulated and stored.
Several specializations of the class basic_string are provided:
Template:tdcl list begin Template:tdcl list header Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list item Template:tdcl list item Template:tdcl list end
char_traits
Strings library provides class template char_traits, defining types and functions for a character container. The following specializations are defined:
| Defined in header <string>
|
||
| template<> class char_traits<std::string>; template<> class char_traits<std::wstring>; |
(since C++11) (since C++11) |
|