#ifndef SPROUT_OPERATION_FIXED_JOIN_FRONT_HPP #define SPROUT_OPERATION_FIXED_JOIN_FRONT_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { namespace result_of { // // join_front // template struct join_front : public join {}; } // namespace result_of // // join_front // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::join_front::type join_front( 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_begin_offset(cont), sprout::size(input), input ); } } // namespace fixed } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_JOIN_FRONT_HPP