map 1.0 KB

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