#ifndef SPROUT_OPERATION_FIXED_APPEND_BACK_HPP #define SPROUT_OPERATION_FIXED_APPEND_BACK_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { namespace result_of { // // append_back // template struct append_back : public sprout::fixed::result_of::append {}; } // namespace result_of // // append_back // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::append_back::type append_back( Container const& cont, Input const& input ) { return sprout::fixed::detail::append_impl::type>( cont, sprout::index_range<0, sprout::container_traits::type>::static_size>::make(), sprout::internal_end_offset(cont), sprout::size(input), input ); } } // namespace fixed namespace result_of { using sprout::fixed::result_of::append_back; } // namespace result_of using sprout::fixed::append_back; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_APPEND_BACK_HPP