39#ifndef _BASIC_STRING_TCC
40#define _BASIC_STRING_TCC 1
43#pragma GCC system_header
46#pragma GCC diagnostic push
47#pragma GCC diagnostic ignored "-Wc++11-extensions"
51namespace std _GLIBCXX_VISIBILITY(default)
53_GLIBCXX_BEGIN_NAMESPACE_VERSION
55#if _GLIBCXX_USE_CXX11_ABI
57 template<
typename _CharT,
typename _Traits,
typename _Alloc>
58 const typename basic_string<_CharT, _Traits, _Alloc>::size_type
61 template<
typename _CharT,
typename _Traits,
typename _Alloc>
70 _Alloc_traits::_S_on_swap(_M_get_allocator(), __s._M_get_allocator());
73 if (__s._M_is_local())
75 if (length() && __s.length())
77 _CharT __tmp_data[_S_local_capacity + 1];
78 traits_type::copy(__tmp_data, __s._M_local_buf,
80 traits_type::copy(__s._M_local_buf, _M_local_buf,
82 traits_type::copy(_M_local_buf, __tmp_data,
85 else if (__s.length())
88 traits_type::copy(_M_local_buf, __s._M_local_buf,
90 _M_length(__s.length());
96 __s._M_init_local_buf();
97 traits_type::copy(__s._M_local_buf, _M_local_buf,
99 __s._M_length(length());
106 const size_type __tmp_capacity = __s._M_allocated_capacity;
107 __s._M_init_local_buf();
108 traits_type::copy(__s._M_local_buf, _M_local_buf,
110 _M_data(__s._M_data());
111 __s._M_data(__s._M_local_buf);
112 _M_capacity(__tmp_capacity);
116 const size_type __tmp_capacity = _M_allocated_capacity;
117 if (__s._M_is_local())
120 traits_type::copy(_M_local_buf, __s._M_local_buf,
122 __s._M_data(_M_data());
123 _M_data(_M_local_buf);
127 pointer __tmp_ptr = _M_data();
128 _M_data(__s._M_data());
129 __s._M_data(__tmp_ptr);
130 _M_capacity(__s._M_allocated_capacity);
132 __s._M_capacity(__tmp_capacity);
136 _M_length(__s.length());
137 __s._M_length(__tmp_length);
140 template<
typename _CharT,
typename _Traits,
typename _Alloc>
142 typename basic_string<_CharT, _Traits, _Alloc>::_Alloc_result
148 if (__capacity > max_size())
149 std::__throw_length_error(__N(
"basic_string::_M_create_plus"));
154 if (__capacity > __old_capacity && __capacity < 2 * __old_capacity)
156 __capacity = 2 * __old_capacity;
158 if (__capacity > max_size())
159 __capacity = max_size();
164 return _S_allocate_at_least(_M_get_allocator(), __capacity + 1);
168 template<
typename _CharT,
typename _Traits,
typename _Alloc>
170 typename basic_string<_CharT, _Traits, _Alloc>::pointer
174 _Alloc_result __r = _M_create_plus(__capacity, __old_capacity);
175 __capacity = __r.__count - 1;
183 template<
typename _CharT,
typename _Traits,
typename _Alloc>
184 template<
typename _InIterator>
189 std::input_iterator_tag)
196 while (__beg != __end && __len < __capacity)
198 _M_local_buf[__len++] = *__beg;
205 explicit _Guard(basic_string* __s) : _M_guarded(__s) { }
208 ~_Guard() {
if (_M_guarded) _M_guarded->_M_dispose(); }
210 basic_string* _M_guarded;
213 while (__beg != __end)
215 if (__len == __capacity)
218 _Alloc_result __another = _M_create_plus(__len + 1, __len);
219 __capacity = __another.__count - 1;
220 this->_S_copy(__another.__ptr, _M_data(), __len);
222 _M_data(__another.__ptr);
223 _M_capacity(__capacity);
225 traits_type::assign(_M_data()[__len++],
226 static_cast<_CharT
>(*__beg));
230 __guard._M_guarded = 0;
232 _M_set_length(__len);
235 template<
typename _CharT,
typename _Traits,
typename _Alloc>
236 template<
typename _InIterator>
241 std::forward_iterator_tag)
245 if (__dnew >
size_type(_S_local_capacity))
246 _M_create_and_place(__dnew,
size_type(0));
254 explicit _Guard(basic_string* __s) : _M_guarded(__s) { }
257 ~_Guard() {
if (_M_guarded) _M_guarded->_M_dispose(); }
259 basic_string* _M_guarded;
262 this->_S_copy_chars(_M_data(), __beg, __end);
264 __guard._M_guarded = 0;
266 _M_set_length(__dnew);
269 template<
typename _CharT,
typename _Traits,
typename _Alloc>
281 this->_S_assign(_M_data(), __n, __c);
288 template<
typename _CharT,
typename _Traits,
typename _Alloc>
289 template<
bool _Terminated>
300 if (__n || _Terminated)
301 this->_S_copy(_M_data(), __str, __n + _Terminated);
305 traits_type::assign(_M_data()[__n], _CharT());
308#if __cplusplus >= 202302L
309 template<
typename _CharT,
typename _Traits,
typename _Alloc>
314 const _CharT* __start = __str._M_data() + __pos;
315 if (__n <= _S_local_capacity)
318 traits_type::copy(_M_local_buf, __start, __n);
324 if (get_allocator() != __str.get_allocator())
326 _M_construct<false>(__start, __n);
330 _M_data(__str._M_data());
331 _M_capacity(__str._M_allocated_capacity);
332 __str._M_data(__str._M_use_local_data());
333 __str._M_set_length(0);
335 _S_move(_M_data(), _M_data() + __pos, __n);
340 template<
typename _CharT,
typename _Traits,
typename _Alloc>
348 const size_type __rsize = __str.length();
351 if (__rsize > __capacity)
354 _Alloc_result __tmp = _M_create_plus(__rsize, __capacity);
356 _M_data(__tmp.__ptr);
357 _M_capacity(__tmp.__count - 1);
361 this->_S_copy(_M_data(), __str._M_data(), __rsize);
363 _M_set_length(__rsize);
367 template<
typename _CharT,
typename _Traits,
typename _Alloc>
378 if (__res <= __capacity)
381 _Alloc_result __r = _M_create_plus(__res, __capacity);
382 this->_S_copy(__r.__ptr, _M_data(), length() + 1);
385 _M_capacity(__r.__count - 1);
388 template<
typename _CharT,
typename _Traits,
typename _Alloc>
395 const size_type __how_much = length() - __pos - __len1;
397 size_type __new_capacity = length() + __len2 - __len1;
398 _Alloc_result __r = _M_create_plus(__new_capacity, capacity());
401 this->_S_copy(__r.__ptr, _M_data(), __pos);
403 this->_S_copy(__r.__ptr + __pos, __s, __len2);
405 this->_S_copy(__r.__ptr + __pos + __len2,
406 _M_data() + __pos + __len1, __how_much);
410 _M_capacity(__r.__count - 1);
413 template<
typename _CharT,
typename _Traits,
typename _Alloc>
419 const size_type __how_much = length() - __pos - __n;
421 if (__how_much && __n)
422 this->_S_move(_M_data() + __pos, _M_data() + __pos + __n, __how_much);
424 _M_set_length(length() - __n);
427 template<
typename _CharT,
typename _Traits,
typename _Alloc>
437 const size_type __capacity = _M_allocated_capacity;
439 if (__length <=
size_type(_S_local_capacity))
442 this->_S_copy(_M_local_buf, _M_data(), __length + 1);
443 _M_destroy(__capacity);
444 _M_data(_M_local_data());
448#ifdef __glibcxx_allocate_at_least
450 (__STDCPP_DEFAULT_NEW_ALIGNMENT__ - 1) /
sizeof(_CharT);
454 if (__capacity - __length > __limit )
457 _Alloc_result __r = _S_allocate_at_least(
458 _M_get_allocator(), __length + 1);
459 this->_S_copy(__r.__ptr, _M_data(), __length + 1);
462 _M_capacity(__r.__count - 1);
464 catch (
const __cxxabiv1::__forced_unwind&)
471 template<
typename _CharT,
typename _Traits,
typename _Alloc>
479 this->append(__n - __size, __c);
480 else if (__n < __size)
481 this->_M_set_length(__n);
484 template<
typename _CharT,
typename _Traits,
typename _Alloc>
492 if (__len <= this->capacity())
495 this->_S_copy(this->_M_data() + this->
size(), __s, __n);
500 this->_M_set_length(__len);
504 template<
typename _CharT,
typename _Traits,
typename _Alloc>
505 template<
typename _InputIterator>
510 _InputIterator __k1, _InputIterator __k2,
515 const basic_string __s(__k1, __k2, this->get_allocator());
517 return _M_replace(__i1 -
begin(), __n1, __s._M_data(),
521 template<
typename _CharT,
typename _Traits,
typename _Alloc>
528 _M_check_length(__n1, __n2,
"basic_string::_M_replace_aux");
531 const size_type __new_size = __old_size + __n2 - __n1;
533 if (__new_size <= this->capacity())
535 pointer __p = this->_M_data() + __pos1;
537 const size_type __how_much = __old_size - __pos1 - __n1;
538 if (__how_much && __n1 != __n2)
539 this->_S_move(__p + __n2, __p + __n1, __how_much);
542 this->_M_mutate(__pos1, __n1, 0, __n2);
545 this->_S_assign(this->_M_data() + __pos1, __n2, __c);
547 this->_M_set_length(__new_size);
551 template<
typename _CharT,
typename _Traits,
typename _Alloc>
552 __attribute__((__noinline__, __noclone__, __cold__))
void
558 if (__len2 && __len2 <= __len1)
559 this->_S_move(__p, __s, __len2);
560 if (__how_much && __len1 != __len2)
561 this->_S_move(__p + __len2, __p + __len1, __how_much);
564 if (__s + __len2 <= __p + __len1)
565 this->_S_move(__p, __s, __len2);
566 else if (__s >= __p + __len1)
570 const size_type __poff = (__s - __p) + (__len2 - __len1);
571 this->_S_copy(__p, __p + __poff, __len2);
575 const size_type __nleft = (__p + __len1) - __s;
576 this->_S_move(__p, __s, __nleft);
577 this->_S_copy(__p + __nleft, __p + __len2, __len2 - __nleft);
582 template<
typename _CharT,
typename _Traits,
typename _Alloc>
589 _M_check_length(__len1, __len2,
"basic_string::_M_replace");
592 const size_type __new_size = __old_size + __len2 - __len1;
594 if (__new_size <= this->capacity())
596 pointer __p = this->_M_data() + __pos;
598 const size_type __how_much = __old_size - __pos - __len1;
599#if __cpp_lib_is_constant_evaluated
600 if (std::is_constant_evaluated())
603 _S_allocate_at_least(_M_get_allocator(), __new_size).__ptr;
604 _S_copy(__newp, this->_M_data(), __pos);
605 _S_copy(__newp + __pos, __s, __len2);
606 _S_copy(__newp + __pos + __len2, __p + __len1, __how_much);
607 _S_copy(this->_M_data(), __newp, __new_size);
608 this->_M_get_allocator().deallocate(__newp, __new_size);
612 if (__builtin_expect(_M_disjunct(__s),
true))
614 if (__how_much && __len1 != __len2)
615 this->_S_move(__p + __len2, __p + __len1, __how_much);
617 this->_S_copy(__p, __s, __len2);
620 _M_replace_cold(__p, __len1, __s, __len2, __how_much);
623 this->_M_mutate(__pos, __len1, __s, __len2);
625 this->_M_set_length(__new_size);
629 template<
typename _CharT,
typename _Traits,
typename _Alloc>
631 typename basic_string<_CharT, _Traits, _Alloc>::size_type
635 _M_check(__pos,
"basic_string::copy");
636 __n = _M_limit(__pos, __n);
637 __glibcxx_requires_string_len(__s, __n);
639 _S_copy(__s, _M_data() + __pos, __n);
644#ifdef __glibcxx_string_resize_and_overwrite
645 template<
typename _CharT,
typename _Traits,
typename _Alloc>
646 template<
typename _Operation>
647 [[__gnu__::__always_inline__]]
651 { resize_and_overwrite<_Operation&>(__n, __op); }
654#if __cplusplus >= 201103L
655 template<
typename _CharT,
typename _Traits,
typename _Alloc>
656 template<
typename _Operation>
657 _GLIBCXX20_CONSTEXPR
void
659#ifdef __glibcxx_string_resize_and_overwrite
660 resize_and_overwrite(
const size_type __n, _Operation __op)
662 __resize_and_overwrite(
const size_type __n, _Operation __op)
666 _CharT*
const __p = _M_data();
667#if __cpp_lib_is_constant_evaluated
668 if (std::__is_constant_evaluated() && __n >
size())
669 traits_type::assign(__p +
size(), __n -
size(), _CharT());
672 _GLIBCXX20_CONSTEXPR ~_Terminator() { _M_this->_M_set_length(_M_r); }
673 basic_string* _M_this;
676 _Terminator __term{
this, 0};
677 auto __r =
std::move(__op)(__p + 0, __n + 0);
678#ifdef __cpp_lib_concepts
679 static_assert(ranges::__detail::__is_integer_like<
decltype(__r)>);
681 static_assert(__gnu_cxx::__is_integer_nonstrict<
decltype(__r)>::__value,
682 "resize_and_overwrite operation must return an integer");
684 _GLIBCXX_DEBUG_ASSERT(__r >= 0 &&
size_type(__r) <= __n);
686 if (__term._M_r > __n)
687 __builtin_unreachable();
693#if __glibcxx_constexpr_string >= 201907L
694# define _GLIBCXX_STRING_CONSTEXPR constexpr
696# define _GLIBCXX_STRING_CONSTEXPR
698 template<
typename _CharT,
typename _Traits,
typename _Alloc>
699 _GLIBCXX_STRING_CONSTEXPR
700 typename basic_string<_CharT, _Traits, _Alloc>::size_type
702 find(
const _CharT* __s, size_type __pos, size_type __n)
const
705 __glibcxx_requires_string_len(__s, __n);
706 const size_type __size = this->
size();
709 return __pos <= __size ? __pos :
npos;
713 const _CharT __elem0 = __s[0];
714 const _CharT*
const __data =
data();
715 const _CharT* __first = __data + __pos;
716 const _CharT*
const __last = __data + __size;
717 size_type __len = __size - __pos;
722 __first = traits_type::find(__first, __len - __n + 1, __elem0);
728 if (traits_type::compare(__first, __s, __n) == 0)
729 return __first - __data;
730 __len = __last - ++__first;
735 template<
typename _CharT,
typename _Traits,
typename _Alloc>
736 _GLIBCXX_STRING_CONSTEXPR
737 typename basic_string<_CharT, _Traits, _Alloc>::size_type
739 find(_CharT __c, size_type __pos)
const _GLIBCXX_NOEXCEPT
741 size_type __ret =
npos;
742 const size_type __size = this->
size();
745 const _CharT* __data = _M_data();
746 const size_type __n = __size - __pos;
747 const _CharT* __p = traits_type::find(__data + __pos, __n, __c);
749 __ret = __p - __data;
754 template<
typename _CharT,
typename _Traits,
typename _Alloc>
755 _GLIBCXX_STRING_CONSTEXPR
756 typename basic_string<_CharT, _Traits, _Alloc>::size_type
758 rfind(
const _CharT* __s, size_type __pos, size_type __n)
const
761 __glibcxx_requires_string_len(__s, __n);
762 const size_type __size = this->
size();
765 __pos =
std::min(size_type(__size - __n), __pos);
766 const _CharT* __data = _M_data();
769 if (traits_type::compare(__data + __pos, __s, __n) == 0)
777 template<
typename _CharT,
typename _Traits,
typename _Alloc>
778 _GLIBCXX_STRING_CONSTEXPR
779 typename basic_string<_CharT, _Traits, _Alloc>::size_type
781 rfind(_CharT __c, size_type __pos)
const _GLIBCXX_NOEXCEPT
783 size_type __size = this->
size();
786 if (--__size > __pos)
788 for (++__size; __size-- > 0; )
789 if (traits_type::eq(_M_data()[__size], __c))
795 template<
typename _CharT,
typename _Traits,
typename _Alloc>
796 _GLIBCXX_STRING_CONSTEXPR
797 typename basic_string<_CharT, _Traits, _Alloc>::size_type
799 find_first_of(
const _CharT* __s, size_type __pos, size_type __n)
const
802 __glibcxx_requires_string_len(__s, __n);
803 for (; __n && __pos < this->
size(); ++__pos)
805 const _CharT* __p = traits_type::find(__s, __n, _M_data()[__pos]);
812 template<
typename _CharT,
typename _Traits,
typename _Alloc>
813 _GLIBCXX_STRING_CONSTEXPR
814 typename basic_string<_CharT, _Traits, _Alloc>::size_type
816 find_last_of(
const _CharT* __s, size_type __pos, size_type __n)
const
819 __glibcxx_requires_string_len(__s, __n);
820 size_type __size = this->
size();
823 if (--__size > __pos)
827 if (traits_type::find(__s, __n, _M_data()[__size]))
830 while (__size-- != 0);
835 template<
typename _CharT,
typename _Traits,
typename _Alloc>
836 _GLIBCXX_STRING_CONSTEXPR
837 typename basic_string<_CharT, _Traits, _Alloc>::size_type
842 __glibcxx_requires_string_len(__s, __n);
843 for (; __pos < this->
size(); ++__pos)
844 if (!traits_type::find(__s, __n, _M_data()[__pos]))
849 template<
typename _CharT,
typename _Traits,
typename _Alloc>
850 _GLIBCXX_STRING_CONSTEXPR
851 typename basic_string<_CharT, _Traits, _Alloc>::size_type
855 for (; __pos < this->
size(); ++__pos)
856 if (!traits_type::eq(_M_data()[__pos], __c))
861 template<
typename _CharT,
typename _Traits,
typename _Alloc>
862 _GLIBCXX_STRING_CONSTEXPR
863 typename basic_string<_CharT, _Traits, _Alloc>::size_type
868 __glibcxx_requires_string_len(__s, __n);
869 size_type __size = this->
size();
872 if (--__size > __pos)
876 if (!traits_type::find(__s, __n, _M_data()[__size]))
884 template<
typename _CharT,
typename _Traits,
typename _Alloc>
885 _GLIBCXX_STRING_CONSTEXPR
886 typename basic_string<_CharT, _Traits, _Alloc>::size_type
890 size_type __size = this->
size();
893 if (--__size > __pos)
897 if (!traits_type::eq(_M_data()[__size], __c))
905#undef _GLIBCXX_STRING_CONSTEXPR
908 template<
typename _CharT,
typename _Traits,
typename _Alloc>
915 typedef typename __istream_type::ios_base __ios_base;
916 typedef typename __istream_type::int_type __int_type;
917 typedef typename __string_type::size_type __size_type;
919 typedef typename __ctype_type::ctype_base __ctype_base;
921 __size_type __extracted = 0;
922 typename __ios_base::iostate __err = __ios_base::goodbit;
923 typename __istream_type::sentry __cerb(__in,
false);
931 __size_type __len = 0;
933 const __size_type __n = __w > 0 ?
static_cast<__size_type
>(__w)
936 const __int_type __eof = _Traits::eof();
937 __int_type __c = __in.
rdbuf()->sgetc();
939 while (__extracted < __n
940 && !_Traits::eq_int_type(__c, __eof)
941 && !__ct.is(__ctype_base::space,
942 _Traits::to_char_type(__c)))
944 if (__len ==
sizeof(__buf) /
sizeof(_CharT))
946 __str.
append(__buf,
sizeof(__buf) /
sizeof(_CharT));
949 __buf[__len++] = _Traits::to_char_type(__c);
951 __c = __in.
rdbuf()->snextc();
953 __str.
append(__buf, __len);
955 if (__extracted < __n && _Traits::eq_int_type(__c, __eof))
956 __err |= __ios_base::eofbit;
961 __in._M_setstate(__ios_base::badbit);
962 __throw_exception_again;
969 __in._M_setstate(__ios_base::badbit);
974 __err |= __ios_base::failbit;
980 template<
typename _CharT,
typename _Traits,
typename _Alloc>
981 basic_istream<_CharT, _Traits>&
987 typedef typename __istream_type::ios_base __ios_base;
988 typedef typename __istream_type::int_type __int_type;
989 typedef typename __string_type::size_type __size_type;
991 __size_type __extracted = 0;
992 const __size_type __n = __str.
max_size();
993 typename __ios_base::iostate __err = __ios_base::goodbit;
994 typename __istream_type::sentry __cerb(__in,
true);
1000 const __int_type __idelim = _Traits::to_int_type(__delim);
1001 const __int_type __eof = _Traits::eof();
1002 __int_type __c = __in.
rdbuf()->sgetc();
1004 while (__extracted < __n
1005 && !_Traits::eq_int_type(__c, __eof)
1006 && !_Traits::eq_int_type(__c, __idelim))
1008 __str += _Traits::to_char_type(__c);
1010 __c = __in.
rdbuf()->snextc();
1013 if (_Traits::eq_int_type(__c, __eof))
1014 __err |= __ios_base::eofbit;
1015 else if (_Traits::eq_int_type(__c, __idelim))
1018 __in.
rdbuf()->sbumpc();
1021 __err |= __ios_base::failbit;
1025 __in._M_setstate(__ios_base::badbit);
1026 __throw_exception_again;
1033 __in._M_setstate(__ios_base::badbit);
1037 __err |= __ios_base::failbit;
1045#if _GLIBCXX_EXTERN_TEMPLATE
1052# if __cplusplus <= 202002L && _GLIBCXX_EXTERN_TEMPLATE > 0
1053 extern template class basic_string<char>;
1054# elif ! _GLIBCXX_USE_CXX11_ABI
1057 extern template basic_string<char>::size_type
1058 basic_string<char>::_Rep::_S_empty_rep_storage[];
1059# elif _GLIBCXX_EXTERN_TEMPLATE > 0
1061 extern template void
1062 basic_string<char>::_M_replace_cold(
char *, size_type,
const char*,
1063 const size_type,
const size_type);
1067 basic_istream<char>&
1070 basic_ostream<char>&
1071 operator<<(basic_ostream<char>&,
const string&);
1073 basic_istream<char>&
1074 getline(basic_istream<char>&,
string&,
char);
1076 basic_istream<char>&
1077 getline(basic_istream<char>&,
string&);
1079#ifdef _GLIBCXX_USE_WCHAR_T
1080# if __cplusplus <= 202002L && _GLIBCXX_EXTERN_TEMPLATE > 0
1081 extern template class basic_string<wchar_t>;
1082# elif ! _GLIBCXX_USE_CXX11_ABI
1083 extern template basic_string<wchar_t>::size_type
1084 basic_string<wchar_t>::_Rep::_S_empty_rep_storage[];
1085# elif _GLIBCXX_EXTERN_TEMPLATE > 0
1087 extern template void
1088 basic_string<wchar_t>::_M_replace_cold(
wchar_t*, size_type,
const wchar_t*,
1089 const size_type,
const size_type);
1093 basic_istream<wchar_t>&
1096 basic_ostream<wchar_t>&
1099 basic_istream<wchar_t>&
1102 basic_istream<wchar_t>&
1107_GLIBCXX_END_NAMESPACE_VERSION
1110#pragma GCC diagnostic pop
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
constexpr const _Tp & min(const _Tp &, const _Tp &)
This does what you think it does.
const _Facet & use_facet(const locale &__loc)
Return a facet.
basic_string< wchar_t > wstring
A string of wchar_t.
ISO C++ entities toplevel namespace is std.
ptrdiff_t streamsize
Integral type for I/O operation counts and buffer sizes.
basic_istream< _CharT, _Traits > & getline(basic_istream< _CharT, _Traits > &__is, basic_string< _CharT, _Traits, _Alloc > &__str, _CharT __delim)
Read a line from stream into a string.
constexpr iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
constexpr auto size(const _Container &__cont) noexcept(noexcept(__cont.size())) -> decltype(__cont.size())
Return the size of a container.
std::basic_istream< _CharT, _Traits > & operator>>(std::basic_istream< _CharT, _Traits > &__is, bitset< _Nb > &__x)
Global I/O operators for bitsets.
std::basic_ostream< _CharT, _Traits > & operator<<(std::basic_ostream< _CharT, _Traits > &__os, const bitset< _Nb > &__x)
Global I/O operators for bitsets.
constexpr auto data(_Container &__cont) noexcept(noexcept(__cont.data())) -> decltype(__cont.data())
Return the data pointer of a container.
constexpr auto begin(_Container &__cont) noexcept(noexcept(__cont.begin())) -> decltype(__cont.begin())
Return an iterator pointing to the first element of the container.
Template class basic_istream.
void setstate(iostate __state)
Sets additional flags in the error state.
basic_streambuf< _CharT, _Traits > * rdbuf() const
Accessing the underlying buffer.
Managing sequences of characters and character-like objects.
constexpr size_type find_last_not_of(const basic_string &__str, size_type __pos=npos) const noexcept
Find last position of a character not in string.
constexpr size_type find(const _CharT *__s, size_type __pos, size_type __n) const noexcept
Find position of a C substring.
constexpr size_type copy(_CharT *__s, size_type __n, size_type __pos=0) const
Copy substring into C string.
constexpr size_type find_first_of(const basic_string &__str, size_type __pos=0) const noexcept
Find position of a character of string.
constexpr void resize(size_type __n, _CharT __c)
Resizes the string to the specified number of characters.
constexpr void __resize_and_overwrite(size_type __n, _Operation __op)
Non-standard version of resize_and_overwrite for C++11 and above.
constexpr size_type rfind(const basic_string &__str, size_type __pos=npos) const noexcept
Find last position of a string.
constexpr basic_string & append(const basic_string &__str)
Append a string to this string.
constexpr size_type find_last_of(const basic_string &__str, size_type __pos=npos) const noexcept
Find last position of a character of string.
constexpr size_type find_first_not_of(const basic_string &__str, size_type __pos=0) const noexcept
Find position of a character not in string.
static const size_type npos
Value returned by various member functions when they fail.
constexpr basic_string & erase(size_type __pos=0, size_type __n=npos)
Remove characters.
constexpr size_type max_size() const noexcept
Returns the size() of the largest possible string.
constexpr void swap(basic_string &__s) noexcept
Swap contents with another string.
Thrown as part of forced unwinding.
streamsize width() const
Flags access.
locale getloc() const
Locale access.
Primary class template ctype facet.