#ifndef SPROUT_OPERATION_FIXED_JOIN_HPP #define SPROUT_OPERATION_FIXED_JOIN_HPP #include #include #include #include #include #include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL namespace sprout { namespace fixed { namespace result_of { // // join // template struct join { public: typedef typename sprout::rebind_fixed_size< typename sprout::fixed_container_traits::fixed_container_type >::template apply< sprout::fixed_container_traits::fixed_size + sprout::fixed_container_traits::fixed_size >::type type; }; } // namespace result_of namespace detail { template SPROUT_CONSTEXPR inline Result join_impl( Container const& cont, sprout::index_tuple, typename sprout::fixed_container_traits::difference_type pos, typename sprout::fixed_container_traits::difference_type size, Input const& input ) { return Result{ (Indexes < sprout::fixed_container_traits::fixed_size + size ? (Indexes < pos ? *(sprout::fixed_begin(cont) + Indexes) : Indexes < pos + size ? *(sprout::begin(input) + Indexes - pos) : *(sprout::fixed_begin(cont) + Indexes - size) ) : typename sprout::fixed_container_traits::value_type{} )... }; } } // namespace detail // // join // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::join::type join( Container const& cont, typename sprout::fixed_container_traits::const_iterator pos, Input const& input ) { return sprout::fixed::detail::join_impl::type>( cont, typename sprout::index_range<0, sprout::fixed_container_traits::type>::fixed_size>::type(), NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(sprout::fixed_begin(cont), pos), sprout::size(input), input ); } // // join // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::join::type join( Container const& cont, typename sprout::fixed_container_traits::difference_type pos, Input const& input ) { return sprout::fixed::detail::join_impl::type>( cont, typename sprout::index_range<0, sprout::fixed_container_traits::type>::fixed_size>::type(), NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(sprout::fixed_begin(cont), sprout::begin(cont) + pos), sprout::size(input), input ); } } // namespace fixed } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_JOIN_HPP