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>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2013-03-31 06:14:10 +00:00
|
|
|
#include <sprout/container/indexes.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:
|
2012-03-31 07:24:13 +00:00
|
|
|
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>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::realign_to<Result, Container>::type
|
|
|
|
realign_to(Container const& cont, T const& v) {
|
2011-09-01 02:48:32 +00:00
|
|
|
return sprout::fixed::detail::realign_impl<typename sprout::fixed::result_of::realign_to<Result, Container>::type>(
|
|
|
|
cont,
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::make(),
|
2011-09-01 02:48:32 +00:00
|
|
|
sprout::size(cont),
|
|
|
|
v
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// realign_to
|
|
|
|
//
|
|
|
|
template<typename Result, typename Container>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::realign_to<Result, Container>::type
|
|
|
|
realign_to(Container const& cont) {
|
2011-09-01 02:48:32 +00:00
|
|
|
return sprout::fixed::detail::realign_impl<typename sprout::fixed::result_of::realign_to<Result, Container>::type>(
|
|
|
|
cont,
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::make(),
|
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
|