55#ifndef _GLIBCXX_VECTOR
56#define _GLIBCXX_VECTOR 1
59#pragma GCC system_header
73#ifndef _GLIBCXX_EXPORT_TEMPLATE
81#define __glibcxx_want_algorithm_default_value_type
82#define __glibcxx_want_allocator_traits_is_always_equal
83#define __glibcxx_want_constexpr_vector
84#define __glibcxx_want_containers_ranges
85#define __glibcxx_want_erase_if
86#define __glibcxx_want_hardened_vector
87#define __glibcxx_want_incomplete_container_elements
88#define __glibcxx_want_nonmember_container_access
91#if __cplusplus >= 201703L
93namespace std _GLIBCXX_VISIBILITY(default)
95_GLIBCXX_BEGIN_NAMESPACE_VERSION
97 template<
typename _Tp>
98 using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
100# ifdef _GLIBCXX_DEBUG
101 namespace _GLIBCXX_STD_C::pmr {
102 template<
typename _Tp>
104 = _GLIBCXX_STD_C::vector<_Tp, std::pmr::polymorphic_allocator<_Tp>>;
107_GLIBCXX_END_NAMESPACE_VERSION
111#ifdef __cpp_lib_erase_if
112namespace std _GLIBCXX_VISIBILITY(default)
114_GLIBCXX_BEGIN_NAMESPACE_VERSION
116 template<
typename _Tp,
typename _Alloc,
typename _Predicate>
117 constexpr typename _GLIBCXX_STD_C::vector<_Tp, _Alloc>::size_type
118 erase_if(_GLIBCXX_STD_C::vector<_Tp, _Alloc>& __cont, _Predicate __pred)
119 {
return __detail::__erase_if(__cont, __cont,
std::move(__pred)); }
121 template<
typename _Tp,
typename _Alloc,
122 typename _Up _GLIBCXX26_DEF_VAL_T(_Tp)>
123 constexpr typename _GLIBCXX_STD_C::vector<_Tp, _Alloc>::size_type
124 erase(_GLIBCXX_STD_C::vector<_Tp, _Alloc>& __cont,
const _Up& __value)
125 {
return std::erase_if(__cont, __gnu_cxx::__ops::__equal_to(__value)); }
127_GLIBCXX_END_NAMESPACE_VERSION
131#ifdef __glibcxx_format_ranges
134namespace std _GLIBCXX_VISIBILITY(default)
136_GLIBCXX_BEGIN_NAMESPACE_VERSION
139 template<__format::__
char _CharT>
140 struct formatter<_GLIBCXX_STD_C::_Bit_reference, _CharT>
144 constexpr typename basic_format_parse_context<_CharT>::iterator
145 parse(basic_format_parse_context<_CharT>& __pc)
146 {
return _M_f.template _M_parse<bool>(__pc); }
150 template<
typename _Out>
151 typename basic_format_context<_Out, _CharT>::iterator
152 format(
const _GLIBCXX_STD_C::_Bit_reference& __u,
153 basic_format_context<_Out, _CharT>& __fc)
const
154 {
return _M_f.format(
static_cast<bool>(__u), __fc); }
157 __format::__formatter_int<_CharT> _M_f;
160#if __glibcxx_print >= 202406L
162 inline constexpr bool
163 enable_nonlocking_formatter_optimization<_GLIBCXX_STD_C::_Bit_reference> =
true;
166_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.