#ifndef SPROUT_OPERATION_FIXED_JOIN_BACK_HPP #define SPROUT_OPERATION_FIXED_JOIN_BACK_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { namespace result_of { // // join_back // template struct join_back : public sprout::fixed::result_of::join {}; } // namespace result_of // // join_back // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::join_back::type join_back( Container const& cont, Input const& input ) { return sprout::fixed::detail::join_impl::type>( cont, typename sprout::index_range<0, sprout::fixed_container_traits::type>::fixed_size>::type(), sprout::fixed_end_offset(cont), sprout::size(input), input ); } } // namespace fixed namespace result_of { using sprout::fixed::result_of::join_back; } // namespace result_of using sprout::fixed::join_back; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_JOIN_BACK_HPP