/*============================================================================= 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_OPERATION_FIXED_APPEND_HPP #define SPROUT_OPERATION_FIXED_APPEND_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { namespace results { // // append // template struct append : public sprout::container_transform_traits< Container >::template rebind_size< sprout::container_traits::static_size + sprout::container_traits::static_size > {}; } // namespace results namespace detail { template inline SPROUT_CONSTEXPR Result append_impl( Container const& cont, sprout::index_tuple, typename sprout::container_traits::difference_type pos, typename sprout::container_traits::difference_type size, Input const& input ) { return sprout::remake( cont, sprout::size(cont) + sprout::size(input), (Indexes < sprout::container_traits::static_size + size ? (Indexes < pos ? *sprout::next(sprout::internal_begin(cont), Indexes) : Indexes < pos + size ? *sprout::next(sprout::begin(input), Indexes - pos) : *sprout::next(sprout::internal_begin(cont), Indexes - size) ) : typename sprout::container_traits::value_type() )... ); } } // namespace detail // // append // template inline SPROUT_CONSTEXPR typename sprout::fixed::results::append::type append( Container const& cont, typename sprout::container_traits::const_iterator pos, Input const& input ) { return sprout::fixed::detail::append_impl::type>( cont, sprout::container_indexes::type>::make(), sprout::distance(sprout::internal_begin(cont), pos), sprout::size(input), input ); } template inline SPROUT_CONSTEXPR typename sprout::fixed::results::append::type append( Container const& cont, typename sprout::container_traits::difference_type pos, Input const& input ) { return sprout::fixed::detail::append_impl::type>( cont, sprout::container_indexes::type>::make(), sprout::distance(sprout::internal_begin(cont), sprout::next(sprout::begin(cont), pos)), sprout::size(input), input ); } } // namespace fixed namespace results { using sprout::fixed::results::append; } // namespace results using sprout::fixed::append; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_APPEND_HPP