#ifndef SPROUT_OPERATION_FIXED_APPEND_HPP #define SPROUT_OPERATION_FIXED_APPEND_HPP #include #include #include #include #include #include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT namespace sprout { namespace fixed { namespace result_of { // // append // template struct append { public: typedef typename sprout::container_transform_traits< Container >::template rebind_size< sprout::container_traits::static_size + sprout::container_traits::static_size >::type type; }; } // namespace result_of 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::result_of::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::index_range< 0, sprout::container_traits::type>::static_size >::make(), NS_SSCRISK_CEL_OR_SPROUT::distance(sprout::internal_begin(cont), pos), sprout::size(input), input ); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::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::index_range< 0, sprout::container_traits::type>::static_size >::make(), NS_SSCRISK_CEL_OR_SPROUT::distance(sprout::internal_begin(cont), sprout::next(sprout::begin(cont), pos)), sprout::size(input), input ); } } // namespace fixed namespace result_of { using sprout::fixed::result_of::append; } // namespace result_of using sprout::fixed::append; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_APPEND_HPP