#ifndef SPROUT_RANGE_ALGORITHM_FIXED_UNIQUE_COPY_HPP #define SPROUT_RANGE_ALGORITHM_FIXED_UNIQUE_COPY_HPP #include #include #include #include namespace sprout { namespace range { namespace fixed { // // unique_copy // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type unique_copy(InputRange const& rng, Result const& result, BinaryPredicate pred) { return sprout::fixed::unique_copy(sprout::begin(rng), sprout::end(rng), result, pred); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type unique_copy(InputRange const& rng, Result const& result) { return sprout::fixed::unique_copy(sprout::begin(rng), sprout::end(rng), result); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type unique_copy(InputRange const& rng, BinaryPredicate pred) { return sprout::fixed::unique_copy(sprout::begin(rng), sprout::end(rng), pred); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type unique_copy(InputRange const& rng) { return sprout::fixed::unique_copy(sprout::begin(rng), sprout::end(rng)); } } // namespace fixed using sprout::range::fixed::unique_copy; } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_UNIQUE_COPY_HPP