mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
最初
This commit is contained in:
commit
b3bb8121e8
362 changed files with 16820 additions and 0 deletions
62
sprout/operation/fixed/realign_to.hpp
Normal file
62
sprout/operation/fixed/realign_to.hpp
Normal file
|
@ -0,0 +1,62 @@
|
|||
#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/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/functions.hpp>
|
||||
#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::rebind_fixed_size<
|
||||
typename sprout::fixed_container_traits<Result>::fixed_container_type
|
||||
>::template apply<
|
||||
sprout::fixed_container_traits<Container>::fixed_size
|
||||
>::type type;
|
||||
};
|
||||
} // 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::fixed_container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::fixed_size>::type(),
|
||||
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::fixed_container_traits<typename sprout::fixed::result_of::realign_to<Result, Container>::type>::fixed_size>::type(),
|
||||
sprout::size(cont)
|
||||
);
|
||||
}
|
||||
} // namespace fixed
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_FIXED_REALIGN_TO_HPP
|
Loading…
Add table
Add a link
Reference in a new issue