30#ifndef _GLIBCXX_EXPERIMENTAL_STRING
31#define _GLIBCXX_EXPERIMENTAL_STRING 1
33#pragma GCC system_header
37#if __cplusplus >= 201402L
43namespace std _GLIBCXX_VISIBILITY(default)
45_GLIBCXX_BEGIN_NAMESPACE_VERSION
49inline namespace fundamentals_v2
51 template<
typename _CharT,
typename _Traits,
typename _Alloc,
54 erase_if(basic_string<_CharT, _Traits, _Alloc>&
__cont, _Predicate __pred)
60 template<
typename _CharT,
typename _Traits,
typename _Alloc,
typename _Up>
62 erase(basic_string<_CharT, _Traits, _Alloc>&
__cont,
const _Up& __value)
68#if _GLIBCXX_USE_CXX11_ABI
72 template<
typename _CharT,
typename _Traits =
char_traits<_CharT>>
78 typedef basic_string<char>
string;
79#ifdef _GLIBCXX_USE_CHAR8_T
80 typedef basic_string<char8_t> u8string;
84 typedef basic_string<wchar_t>
wstring;
91_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.