30#ifndef _GLIBCXX_EXPERIMENTAL_STRING
31#define _GLIBCXX_EXPERIMENTAL_STRING 1
34#pragma GCC system_header
39#if __cplusplus >= 201402L
45namespace std _GLIBCXX_VISIBILITY(default)
47_GLIBCXX_BEGIN_NAMESPACE_VERSION
51inline namespace fundamentals_v2
53 template<
typename _CharT,
typename _Traits,
typename _Alloc,
56 erase_if(basic_string<_CharT, _Traits, _Alloc>&
__cont, _Predicate __pred)
62 template<
typename _CharT,
typename _Traits,
typename _Alloc,
typename _Up>
64 erase(basic_string<_CharT, _Traits, _Alloc>&
__cont,
const _Up& __value)
70#if _GLIBCXX_USE_CXX11_ABI
74 template<
typename _CharT,
typename _Traits =
char_traits<_CharT>>
80 typedef basic_string<char>
string;
81#ifdef _GLIBCXX_USE_CHAR8_T
82 typedef basic_string<char8_t> u8string;
86 typedef basic_string<wchar_t>
wstring;
93_GLIBCXX_END_NAMESPACE_VERSION
basic_string< char > string
A string of char.
basic_string< char32_t > u32string
A string of char32_t.
basic_string< char16_t > u16string
A string of char16_t.
basic_string< wchar_t > wstring
A string of wchar_t.
ISO C++ entities toplevel namespace is std.
Managing sequences of characters and character-like objects.