55#ifndef _GLIBCXX_VECTOR
56#define _GLIBCXX_VECTOR 1
59#pragma GCC system_header
72#ifndef _GLIBCXX_EXPORT_TEMPLATE
80#define __glibcxx_want_algorithm_default_value_type
81#define __glibcxx_want_allocator_traits_is_always_equal
82#define __glibcxx_want_constexpr_vector
83#define __glibcxx_want_containers_ranges
84#define __glibcxx_want_erase_if
85#define __glibcxx_want_incomplete_container_elements
86#define __glibcxx_want_nonmember_container_access
89#if __cplusplus >= 201703L
91namespace std _GLIBCXX_VISIBILITY(default)
93_GLIBCXX_BEGIN_NAMESPACE_VERSION
95 template<
typename _Tp>
96 using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
99 namespace _GLIBCXX_STD_C::pmr {
100 template<
typename _Tp>
102 = _GLIBCXX_STD_C::vector<_Tp, std::pmr::polymorphic_allocator<_Tp>>;
105_GLIBCXX_END_NAMESPACE_VERSION
109#ifdef __cpp_lib_erase_if
110namespace std _GLIBCXX_VISIBILITY(default)
112_GLIBCXX_BEGIN_NAMESPACE_VERSION
114 template<
typename _Tp,
typename _Alloc,
typename _Predicate>
115 constexpr typename _GLIBCXX_STD_C::vector<_Tp, _Alloc>::size_type
116 erase_if(_GLIBCXX_STD_C::vector<_Tp, _Alloc>& __cont, _Predicate __pred)
118 const auto __osz = __cont.size();
119 const auto __end = __cont.end();
120 auto __removed = std::__remove_if(__cont.begin(), __end,
122 if (__removed != __end)
124 __cont.erase(__removed, __end);
125 return __osz - __cont.size();
131 template<
typename _Tp,
typename _Alloc,
132 typename _Up _GLIBCXX26_DEF_VAL_T(_Tp)>
133 constexpr typename _GLIBCXX_STD_C::vector<_Tp, _Alloc>::size_type
134 erase(_GLIBCXX_STD_C::vector<_Tp, _Alloc>& __cont,
const _Up& __value)
135 {
return std::erase_if(__cont, __gnu_cxx::__ops::__equal_to(__value)); }
137_GLIBCXX_END_NAMESPACE_VERSION
141#ifdef __glibcxx_format_ranges
144namespace std _GLIBCXX_VISIBILITY(default)
146_GLIBCXX_BEGIN_NAMESPACE_VERSION
149 template<__format::__
char _CharT>
150 struct formatter<_GLIBCXX_STD_C::_Bit_reference, _CharT>
154 constexpr typename basic_format_parse_context<_CharT>::iterator
155 parse(basic_format_parse_context<_CharT>& __pc)
156 {
return _M_f.template _M_parse<bool>(__pc); }
160 template<
typename _Out>
161 typename basic_format_context<_Out, _CharT>::iterator
162 format(
const _GLIBCXX_STD_C::_Bit_reference& __u,
163 basic_format_context<_Out, _CharT>& __fc)
const
164 {
return _M_f.format(
static_cast<bool>(__u), __fc); }
167 __format::__formatter_int<_CharT> _M_f;
170#if __glibcxx_print >= 202406L
172 inline constexpr bool
173 enable_nonlocking_formatter_optimization<_GLIBCXX_STD_C::_Bit_reference> =
true;
176_GLIBCXX_END_NAMESPACE_VERSION
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
ISO C++ entities toplevel namespace is std.