#ifndef SPROUT_OPERATION_FIT_RESIZE_HPP #define SPROUT_OPERATION_FIT_RESIZE_HPP #include #include #include #include #include #include namespace sprout { namespace fit { namespace result_of { // // resize // template struct resize { public: typedef sprout::sub_array< typename sprout::fixed_container_traits< typename sprout::fixed::result_of::resize::type >::internal_type > type; }; } // namespace result_of // // resize // template SPROUT_CONSTEXPR inline typename sprout::fit::result_of::resize::type resize( Container const& cont, T const& v ) { return sprout::sub_copy( sprout::get_fixed(sprout::fixed::resize(cont, v)), 0, sprout::fixed_container_traits::type>::fixed_size ); } // // resize // template SPROUT_CONSTEXPR inline typename sprout::fit::result_of::resize::type resize( Container const& cont ) { return sprout::sub_copy( sprout::get_fixed(sprout::fixed::resize(cont)), 0, sprout::fixed_container_traits::type>::fixed_size ); } } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIT_RESIZE_HPP