30#ifndef _GLIBCXX_EXPERIMENTAL_VECTOR
31#define _GLIBCXX_EXPERIMENTAL_VECTOR 1
34#pragma GCC system_header
39#if __cplusplus >= 201402L
45namespace std _GLIBCXX_VISIBILITY(default)
47_GLIBCXX_BEGIN_NAMESPACE_VERSION
51inline namespace fundamentals_v2
53#define __cpp_lib_experimental_erase_if 201411
55 template<
typename _Tp,
typename _Alloc,
typename _Predicate>
57 erase_if(vector<_Tp, _Alloc>& __cont, _Predicate __pred)
59 __cont.erase(std::remove_if(__cont.begin(), __cont.end(), __pred),
63 template<
typename _Tp,
typename _Alloc,
typename _Up>
65 erase(vector<_Tp, _Alloc>& __cont,
const _Up& __value)
67 __cont.erase(std::remove(__cont.begin(), __cont.end(), __value),
72 template<
typename _Tp>
73 using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
79_GLIBCXX_END_NAMESPACE_VERSION
ISO C++ entities toplevel namespace is std.
Namespace for features defined in ISO Technical Specifications.