1
0

string 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 <algorithm>
  7. #include <string> // IWYU pragma: export
  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;
  14. using std::erase_if;
  15. #else
  16. template <typename T, typename Traits, typename Allocator, typename V>
  17. inline void erase(std::basic_string<T, Traits, Allocator>& cont,
  18. const V& value)
  19. {
  20. cont.erase(std::remove(cont.begin(), cont.end(), value), cont.end());
  21. }
  22. template <typename T, typename Traits, typename Allocator, typename Predicate>
  23. inline void erase_if(std::basic_string<T, Traits, Allocator>& cont,
  24. Predicate pred)
  25. {
  26. cont.erase(std::remove_if(cont.begin(), cont.end(), pred), cont.end());
  27. }
  28. #endif
  29. } // namespace cm