/*============================================================================= Copyright (c) 2011-2015 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under 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) =============================================================================*/ #ifndef SPROUT_ALGORITHM_FIT_CLAMP_RANGE_COPY_HPP #define SPROUT_ALGORITHM_FIT_CLAMP_RANGE_COPY_HPP #include #include #include #include #include #include #include #include #include namespace sprout { namespace fit { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type clamp_range_copy_impl( InputIterator first, InputIterator last, Result const& result, typename std::iterator_traits::value_type const& low, typename std::iterator_traits::value_type const& high, Compare comp, typename sprout::container_traits::difference_type offset ) { return sprout::sub_copy( sprout::get_internal(sprout::fixed::clamp_range_copy(first, last, result, low, high, comp)), offset, offset + sprout::fit_size(result, sprout::distance(first, last)) ); } } // namespace detail // // clamp_range_copy // template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type clamp_range_copy( InputIterator first, InputIterator last, Result const& result, typename std::iterator_traits::value_type const& low, typename std::iterator_traits::value_type const& high, Compare comp ) { static_assert(sprout::is_forward_iterator::value, "Sorry, not implemented."); return sprout::fit::detail::clamp_range_copy_impl(first, last, result, low, high, comp, sprout::internal_begin_offset(result)); } namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type clamp_range_copy_impl( InputIterator first, InputIterator last, Result const& result, typename std::iterator_traits::value_type const& low, typename std::iterator_traits::value_type const& high, typename sprout::container_traits::difference_type offset ) { return sprout::sub_copy( sprout::get_internal(sprout::fixed::clamp_range_copy(first, last, result, low, high)), offset, offset + sprout::fit_size(result, sprout::distance(first, last)) ); } } // namespace detail // // clamp_range_copy // template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type clamp_range_copy( InputIterator first, InputIterator last, Result const& result, typename std::iterator_traits::value_type const& low, typename std::iterator_traits::value_type const& high ) { static_assert(sprout::is_forward_iterator::value, "Sorry, not implemented."); return sprout::fit::detail::clamp_range_copy_impl(first, last, result, low, high, sprout::internal_begin_offset(result)); } } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIT_CLAMP_RANGE_COPY_HPP