/*============================================================================= Copyright (c) 2011-2014 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_STRING_FIT_TO_LOWER_HPP #define SPROUT_ALGORITHM_STRING_FIT_TO_LOWER_HPP #include #include #include #include #include #include #include namespace sprout { namespace algorithm { namespace fit { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type to_lower_impl( Container const& cont, typename sprout::container_traits::difference_type offset ) { return sprout::sub_copy( sprout::get_internal(sprout::algorithm::fixed::to_lower(cont)), offset, offset + sprout::size(cont) ); } } // namespace detail // // to_lower // template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type to_lower(Container const& cont) { return sprout::algorithm::fit::detail::to_lower_impl(cont, sprout::internal_begin_offset(cont)); } } // namespace fit } // namespace algorithm namespace fit { using sprout::algorithm::fit::to_lower; } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_STRING_FIT_TO_LOWER_HPP