#ifndef SPROUT_OPERATION_FIXED_REALIGN_TO_HPP #define SPROUT_OPERATION_FIXED_REALIGN_TO_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { namespace result_of { // // realign_to // template struct realign_to { public: typedef typename sprout::container_construct_traits::copied_type type; }; } // namespace result_of // // realign_to // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::realign_to::type realign_to( Container const& cont, T const& v ) { return sprout::fixed::detail::realign_impl::type>( cont, typename sprout::index_range<0, sprout::container_traits::type>::static_size>::type(), sprout::size(cont), v ); } // // realign_to // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::realign_to::type realign_to( Container const& cont ) { return sprout::fixed::detail::realign_impl::type>( cont, typename sprout::index_range<0, sprout::container_traits::type>::static_size>::type(), sprout::size(cont) ); } } // namespace fixed namespace result_of { using sprout::fixed::result_of::realign_to; } // namespace result_of using sprout::fixed::realign_to; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_REALIGN_TO_HPP