/// \file // Range v3 library // // Copyright Eric Niebler 2013-2014 // Copyright Gonzalo Brito Gadeschi 2014 // // 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 // // Implementation based on the code in libc++ // http://http://libcxx.llvm.org/ #ifndef RANGES_V3_ALGORITHM_UNIQUE_HPP #define RANGES_V3_ALGORITHM_UNIQUE_HPP #include #include #include #include #include #include namespace ranges { inline namespace v3 { /// \addtogroup group-algorithms /// @{ struct unique_fn { /// \brief template function \c unique_fn::operator() /// /// range-based version of the \c unique std algorithm /// /// \pre `Rng` is a model of the `ForwardView` concept /// \pre `I` is a model of the `ForwardIterator` concept /// \pre `S` is a model of the `Sentinel` concept /// \pre `C` is a model of the `Relation` concept /// template() && Sentinel())> I operator()(I begin, S end, C pred = C{}, P proj = P{}) const { begin = adjacent_find(std::move(begin), end, std::ref(pred), std::ref(proj)); if(begin != end) { for(I i = next(begin); ++i != end;) if(!invoke(pred, invoke(proj, *begin), invoke(proj, *i))) *++begin = iter_move(i); ++begin; } return begin; } template, CONCEPT_REQUIRES_(Sortable() && Range())> safe_iterator_t operator()(Rng &&rng, C pred = C{}, P proj = P{}) const { return (*this)(begin(rng), end(rng), std::move(pred), std::move(proj)); } }; /// \sa `unique_fn` /// \ingroup group-algorithms RANGES_INLINE_VARIABLE(with_braced_init_args, unique) /// @} } // namespace v3 } // namespace ranges #endif // include guard