No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

action.hpp 1.3KB

hace 5 años
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /// \file
  2. // Range v3 library
  3. //
  4. // Copyright Eric Niebler 2014-present
  5. //
  6. // Use, modification and distribution is subject to the
  7. // Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. //
  11. // Project home: https://github.com/ericniebler/range-v3
  12. //
  13. #ifndef RANGES_V3_ACTION_HPP
  14. #define RANGES_V3_ACTION_HPP
  15. #include <range/v3/action/action.hpp>
  16. #include <range/v3/action/adjacent_remove_if.hpp>
  17. #include <range/v3/action/concepts.hpp>
  18. #include <range/v3/action/drop.hpp>
  19. #include <range/v3/action/drop_while.hpp>
  20. #include <range/v3/action/erase.hpp>
  21. #include <range/v3/action/insert.hpp>
  22. #include <range/v3/action/join.hpp>
  23. #include <range/v3/action/push_back.hpp>
  24. #include <range/v3/action/push_front.hpp>
  25. #include <range/v3/action/remove_if.hpp>
  26. #include <range/v3/action/reverse.hpp>
  27. #include <range/v3/action/shuffle.hpp>
  28. #include <range/v3/action/slice.hpp>
  29. #include <range/v3/action/sort.hpp>
  30. #include <range/v3/action/split.hpp>
  31. #include <range/v3/action/split_when.hpp>
  32. #include <range/v3/action/stable_sort.hpp>
  33. #include <range/v3/action/stride.hpp>
  34. #include <range/v3/action/take.hpp>
  35. #include <range/v3/action/take_while.hpp>
  36. #include <range/v3/action/transform.hpp>
  37. #include <range/v3/action/unique.hpp>
  38. #include <range/v3/action/unstable_remove_if.hpp>
  39. #endif