#ifndef SPROUT_RANGE_ALGORITHM_INFIT_UNIQUE_COPY_HPP #define SPROUT_RANGE_ALGORITHM_INFIT_UNIQUE_COPY_HPP #include #include #include #include #include namespace sprout { namespace range { namespace infit { // // unique_copy // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> unique_copy( Input const& input, Result const& result ) { return sprout::infit::unique_copy(sprout::begin(input), sprout::end(input), result); } // // unique_copy // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> unique_copy( Input const& input, Result const& result, BinaryPredicate pred ) { return sprout::infit::unique_copy(sprout::begin(input), sprout::end(input), result, pred); } } // namespace infit } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_INFIT_UNIQUE_COPY_HPP