set 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // <set> -*- C++ -*-
  2. // Copyright (C) 2001-2019 Free Software Foundation, Inc.
  3. //
  4. // This file is part of the GNU ISO C++ Library. This library is free
  5. // software; you can redistribute it and/or modify it under the
  6. // terms of the GNU General Public License as published by the
  7. // Free Software Foundation; either version 3, or (at your option)
  8. // any later version.
  9. // This library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. // Under Section 7 of GPL version 3, you are granted additional
  14. // permissions described in the GCC Runtime Library Exception, version
  15. // 3.1, as published by the Free Software Foundation.
  16. // You should have received a copy of the GNU General Public License and
  17. // a copy of the GCC Runtime Library Exception along with this program;
  18. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. // <http://www.gnu.org/licenses/>.
  20. /*
  21. *
  22. * Copyright (c) 1994
  23. * Hewlett-Packard Company
  24. *
  25. * Permission to use, copy, modify, distribute and sell this software
  26. * and its documentation for any purpose is hereby granted without fee,
  27. * provided that the above copyright notice appear in all copies and
  28. * that both that copyright notice and this permission notice appear
  29. * in supporting documentation. Hewlett-Packard Company makes no
  30. * representations about the suitability of this software for any
  31. * purpose. It is provided "as is" without express or implied warranty.
  32. *
  33. *
  34. * Copyright (c) 1996,1997
  35. * Silicon Graphics Computer Systems, Inc.
  36. *
  37. * Permission to use, copy, modify, distribute and sell this software
  38. * and its documentation for any purpose is hereby granted without fee,
  39. * provided that the above copyright notice appear in all copies and
  40. * that both that copyright notice and this permission notice appear
  41. * in supporting documentation. Silicon Graphics makes no
  42. * representations about the suitability of this software for any
  43. * purpose. It is provided "as is" without express or implied warranty.
  44. */
  45. /** @file include/set
  46. * This is a Standard C++ Library header.
  47. */
  48. #ifndef _GLIBCXX_SET
  49. #define _GLIBCXX_SET 1
  50. #pragma GCC system_header
  51. #include <bits/stl_tree.h>
  52. #include <bits/stl_set.h>
  53. #include <bits/stl_multiset.h>
  54. #include <bits/range_access.h>
  55. #include <bits/erase_if.h>
  56. #ifdef _GLIBCXX_DEBUG
  57. # include <debug/set>
  58. #endif
  59. #ifdef _GLIBCXX_PROFILE
  60. # include <profile/set>
  61. #endif
  62. #if __cplusplus >= 201703L
  63. namespace std _GLIBCXX_VISIBILITY(default)
  64. {
  65. _GLIBCXX_BEGIN_NAMESPACE_VERSION
  66. namespace pmr
  67. {
  68. template<typename _Tp> class polymorphic_allocator;
  69. template<typename _Key, typename _Cmp = std::less<_Key>>
  70. using set = std::set<_Key, _Cmp, polymorphic_allocator<_Key>>;
  71. template<typename _Key, typename _Cmp = std::less<_Key>>
  72. using multiset = std::multiset<_Key, _Cmp, polymorphic_allocator<_Key>>;
  73. } // namespace pmr
  74. _GLIBCXX_END_NAMESPACE_VERSION
  75. } // namespace std
  76. #endif // C++17
  77. #if __cplusplus > 201703L
  78. namespace std _GLIBCXX_VISIBILITY(default)
  79. {
  80. _GLIBCXX_BEGIN_NAMESPACE_VERSION
  81. template<typename _Key, typename _Compare, typename _Alloc,
  82. typename _Predicate>
  83. inline typename set<_Key, _Compare, _Alloc>::size_type
  84. erase_if(set<_Key, _Compare, _Alloc>& __cont, _Predicate __pred)
  85. { return __detail::__erase_nodes_if(__cont, __pred); }
  86. template<typename _Key, typename _Compare, typename _Alloc,
  87. typename _Predicate>
  88. inline typename multiset<_Key, _Compare, _Alloc>::size_type
  89. erase_if(multiset<_Key, _Compare, _Alloc>& __cont, _Predicate __pred)
  90. { return __detail::__erase_nodes_if(__cont, __pred); }
  91. _GLIBCXX_END_NAMESPACE_VERSION
  92. } // namespace std
  93. #endif // C++20
  94. #endif /* _GLIBCXX_SET */