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_incomplete_container_elements
87#define __glibcxx_want_nonmember_container_access
90#if __cplusplus >= 201703L
92namespace std _GLIBCXX_VISIBILITY(default)
94_GLIBCXX_BEGIN_NAMESPACE_VERSION
96 template<
typename _Tp>
97 using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
100 namespace _GLIBCXX_STD_C::pmr {
101 template<
typename _Tp>
103 = _GLIBCXX_STD_C::vector<_Tp, std::pmr::polymorphic_allocator<_Tp>>;
106_GLIBCXX_END_NAMESPACE_VERSION
110#ifdef __cpp_lib_erase_if
111namespace std _GLIBCXX_VISIBILITY(default)
113_GLIBCXX_BEGIN_NAMESPACE_VERSION
115 template<
typename _Tp,
typename _Alloc,
typename _Predicate>
116 constexpr typename _GLIBCXX_STD_C::vector<_Tp, _Alloc>::size_type
117 erase_if(_GLIBCXX_STD_C::vector<_Tp, _Alloc>& __cont, _Predicate __pred)
118 {
return __detail::__erase_if(__cont, __cont,
std::move(__pred)); }
120 template<
typename _Tp,
typename _Alloc,
121 typename _Up _GLIBCXX26_DEF_VAL_T(_Tp)>
122 constexpr typename _GLIBCXX_STD_C::vector<_Tp, _Alloc>::size_type
123 erase(_GLIBCXX_STD_C::vector<_Tp, _Alloc>& __cont,
const _Up& __value)
124 {
return std::erase_if(__cont, __gnu_cxx::__ops::__equal_to(__value)); }
126_GLIBCXX_END_NAMESPACE_VERSION
130#ifdef __glibcxx_format_ranges
133namespace std _GLIBCXX_VISIBILITY(default)
135_GLIBCXX_BEGIN_NAMESPACE_VERSION
138 template<__format::__
char _CharT>
139 struct formatter<_GLIBCXX_STD_C::_Bit_reference, _CharT>
143 constexpr typename basic_format_parse_context<_CharT>::iterator
144 parse(basic_format_parse_context<_CharT>& __pc)
145 {
return _M_f.template _M_parse<bool>(__pc); }
149 template<
typename _Out>
150 typename basic_format_context<_Out, _CharT>::iterator
151 format(
const _GLIBCXX_STD_C::_Bit_reference& __u,
152 basic_format_context<_Out, _CharT>& __fc)
const
153 {
return _M_f.format(
static_cast<bool>(__u), __fc); }
156 __format::__formatter_int<_CharT> _M_f;
159#if __glibcxx_print >= 202406L
161 inline constexpr bool
162 enable_nonlocking_formatter_optimization<_GLIBCXX_STD_C::_Bit_reference> =
true;
165_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.