Sprout/sprout/operation/fixed/realign_to.hpp

65 lines
2 KiB
C++
Raw Normal View History

2011-09-01 02:48:32 +00:00
#ifndef SPROUT_OPERATION_FIXED_REALIGN_TO_HPP
#define SPROUT_OPERATION_FIXED_REALIGN_TO_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/index_tuple.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
2011-09-01 02:48:32 +00:00
#include <sprout/operation/fixed/realign.hpp>
namespace sprout {
namespace fixed {
namespace result_of {
//
// realign_to
//
template<typename Result, typename Container>
struct realign_to {
public:
typedef typename sprout::container_construct_traits<Result>::copied_type type;
2011-09-01 02:48:32 +00:00
};
} // namespace result_of
//
// realign_to
//
template<typename Result, typename Container, typename T>
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::realign_to<Result, Container>::type realign_to(
Container const& cont,
T const& v
)
{
return sprout::fixed::detail::realign_impl<typename sprout::fixed::result_of::realign_to<Result, Container>::type>(
cont,
typename sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::static_size>::type(),
2011-09-01 02:48:32 +00:00
sprout::size(cont),
v
);
}
//
// realign_to
//
template<typename Result, typename Container>
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::realign_to<Result, Container>::type realign_to(
Container const& cont
)
{
return sprout::fixed::detail::realign_impl<typename sprout::fixed::result_of::realign_to<Result, Container>::type>(
cont,
typename sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::static_size>::type(),
2011-09-01 02:48:32 +00:00
sprout::size(cont)
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
namespace result_of {
using sprout::fixed::result_of::realign_to;
} // namespace result_of
using sprout::fixed::realign_to;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_REALIGN_TO_HPP