|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /// \file
- // Range v3 library
- //
- // Copyright Eric Niebler 2013-present
- //
- // Use, modification and distribution is subject to the
- // Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- //
- // Project home: https://github.com/ericniebler/range-v3
- //
-
- #ifndef RANGES_V3_ACTION_SPLIT_HPP
- #define RANGES_V3_ACTION_SPLIT_HPP
-
- #include <vector>
-
- #include <meta/meta.hpp>
-
- #include <range/v3/range_fwd.hpp>
-
- #include <range/v3/action/action.hpp>
- #include <range/v3/action/concepts.hpp>
- #include <range/v3/iterator/concepts.hpp>
- #include <range/v3/iterator/traits.hpp>
- #include <range/v3/range/conversion.hpp>
- #include <range/v3/utility/static_const.hpp>
- #include <range/v3/view/split.hpp>
- #include <range/v3/view/transform.hpp>
-
- namespace ranges
- {
- /// \addtogroup group-actions
- /// @{
- namespace actions
- {
- struct split_fn
- {
- private:
- template<typename Rng>
- using split_value_t = meta::if_c<(bool)ranges::container<Rng>, uncvref_t<Rng>,
- std::vector<range_value_t<Rng>>>;
-
- public:
- // BUGBUG something is not right with the actions. It should be possible
- // to move a container into a split and have elements moved into the result.
- template<typename Rng>
- auto operator()(Rng && rng, range_value_t<Rng> val) const
- -> CPP_ret(std::vector<split_value_t<Rng>>)( //
- requires input_range<Rng> && indirectly_comparable<
- iterator_t<Rng>, range_value_t<Rng> const *, ranges::equal_to>)
- {
- return views::split(rng, std::move(val)) |
- views::transform(to<split_value_t<Rng>>()) | to_vector;
- }
- template<typename Rng, typename Pattern>
- auto operator()(Rng && rng, Pattern && pattern) const
- -> CPP_ret(std::vector<split_value_t<Rng>>)( //
- requires input_range<Rng> && viewable_range<Pattern> &&
- forward_range<Pattern> && indirectly_comparable<
- iterator_t<Rng>, iterator_t<Pattern>, ranges::equal_to> &&
- (forward_range<Rng> || detail::tiny_range<Pattern>))
- {
- return views::split(rng, static_cast<Pattern &&>(pattern)) |
- views::transform(to<split_value_t<Rng>>()) | to_vector;
- }
- };
-
- /// \ingroup group-actions
- /// \relates split_fn
- /// \sa action
- RANGES_INLINE_VARIABLE(action<split_fn>, split)
- } // namespace actions
- /// @}
- } // namespace ranges
-
- #endif
|