1
0

deque 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // -*-c++-*-
  2. // vim: set ft=cpp:
  3. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  4. file LICENSE.rst or https://cmake.org/licensing for details. */
  5. #pragma once
  6. #include <algorithm>
  7. #include <deque> // IWYU pragma: export
  8. #include <cm/bits/container_helpers.hxx> // IWYU pragma: export
  9. namespace cm {
  10. // should be updated when C++20 is finalized
  11. #if (__cplusplus > 201703L || \
  12. (defined(_MSVC_LANG) && _MSVC_LANG > 201703)) && \
  13. defined(__cpp_lib_erase_if)
  14. using std::erase;
  15. using std::erase_if;
  16. #else
  17. template <typename T, typename Allocator, typename V>
  18. inline void erase(std::deque<T, Allocator>& cont, V const& value)
  19. {
  20. cont.erase(std::remove(cont.begin(), cont.end(), value), cont.end());
  21. }
  22. template <typename T, typename Allocator, typename Predicate>
  23. inline void erase_if(std::deque<T, Allocator>& cont, Predicate pred)
  24. {
  25. cont.erase(std::remove_if(cont.begin(), cont.end(), pred), cont.end());
  26. }
  27. #endif
  28. } // namespace cm