mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-10-17 13:39:26 +00:00
operation/set.hpp 追加
random/shuffle_order.hpp 追加
This commit is contained in:
parent
6e6c515704
commit
01a0ce4380
9 changed files with 356 additions and 2 deletions
|
@ -21,5 +21,6 @@
|
|||
#include <sprout/operation/fit/append.hpp>
|
||||
#include <sprout/operation/fit/append_back.hpp>
|
||||
#include <sprout/operation/fit/append_front.hpp>
|
||||
#include <sprout/operation/fit/set.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_FIT_HPP
|
||||
|
|
63
sprout/operation/fit/set.hpp
Normal file
63
sprout/operation/fit/set.hpp
Normal file
|
@ -0,0 +1,63 @@
|
|||
#ifndef SPROUT_OPERATION_FIT_SET_HPP
|
||||
#define SPROUT_OPERATION_FIT_SET_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/functions.hpp>
|
||||
#include <sprout/operation/fixed/set.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace fit {
|
||||
namespace result_of {
|
||||
//
|
||||
// set
|
||||
//
|
||||
template<typename Container, typename T>
|
||||
struct set {
|
||||
public:
|
||||
typedef sprout::sub_array<
|
||||
typename sprout::fixed_container_traits<
|
||||
typename sprout::fixed::result_of::set<Container, T>::type
|
||||
>::internal_type
|
||||
> type;
|
||||
};
|
||||
} // namespace result_of
|
||||
|
||||
//
|
||||
// set
|
||||
//
|
||||
template<typename Container, typename T>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::set<Container, T>::type set(
|
||||
Container const& cont,
|
||||
typename sprout::fixed_container_traits<Container>::const_iterator pos,
|
||||
T const& v
|
||||
)
|
||||
{
|
||||
return sprout::sub_copy(
|
||||
sprout::get_fixed(sprout::fixed::set(cont, pos, v)),
|
||||
sprout::fixed_begin_offset(cont),
|
||||
sprout::fixed_end_offset(cont)
|
||||
);
|
||||
}
|
||||
//
|
||||
// set
|
||||
//
|
||||
template<typename Container, typename T>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::set<Container, T>::type set(
|
||||
Container const& cont,
|
||||
typename sprout::fixed_container_traits<Container>::difference_type pos,
|
||||
T const& v
|
||||
)
|
||||
{
|
||||
return sprout::sub_copy(
|
||||
sprout::get_fixed(sprout::fixed::set(cont, pos, v)),
|
||||
sprout::fixed_begin_offset(cont),
|
||||
sprout::fixed_end_offset(cont)
|
||||
);
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_FIT_SET_HPP
|
|
@ -21,5 +21,6 @@
|
|||
#include <sprout/operation/fixed/append.hpp>
|
||||
#include <sprout/operation/fixed/append_back.hpp>
|
||||
#include <sprout/operation/fixed/append_front.hpp>
|
||||
#include <sprout/operation/fixed/set.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_FIXED_HPP
|
||||
|
|
|
@ -17,7 +17,7 @@ namespace sprout {
|
|||
template<typename Container>
|
||||
struct realign {
|
||||
public:
|
||||
typedef Container type;
|
||||
typedef typename sprout::fixed_container_traits<Container>::clone_type type;
|
||||
};
|
||||
} // namespace result_of
|
||||
|
||||
|
|
87
sprout/operation/fixed/set.hpp
Normal file
87
sprout/operation/fixed/set.hpp
Normal file
|
@ -0,0 +1,87 @@
|
|||
#ifndef SPROUT_OPERATION_FIXED_SET_HPP
|
||||
#define SPROUT_OPERATION_FIXED_SET_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/iterator/operation.hpp>
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL
|
||||
|
||||
namespace sprout {
|
||||
namespace fixed {
|
||||
namespace result_of {
|
||||
//
|
||||
// set
|
||||
//
|
||||
template<typename Container, typename T>
|
||||
struct set {
|
||||
public:
|
||||
typedef typename sprout::fixed_container_traits<Container>::clone_type type;
|
||||
};
|
||||
} // namespace result_of
|
||||
|
||||
namespace detail {
|
||||
template<typename Result, typename Container, typename T, std::ptrdiff_t... Indexes>
|
||||
SPROUT_CONSTEXPR inline Result set_impl(
|
||||
Container const& cont,
|
||||
sprout::index_tuple<Indexes...>,
|
||||
typename sprout::fixed_container_traits<Container>::difference_type pos,
|
||||
T const& v
|
||||
)
|
||||
{
|
||||
return sprout::remake_clone<Result, Container>(
|
||||
cont,
|
||||
sprout::size(cont),
|
||||
(Indexes != pos
|
||||
? *sprout::next(sprout::fixed_begin(cont), Indexes)
|
||||
: v
|
||||
)...
|
||||
);
|
||||
}
|
||||
} // namespace detail
|
||||
//
|
||||
// set
|
||||
//
|
||||
template<typename Container, typename T>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::set<Container, T>::type set(
|
||||
Container const& cont,
|
||||
typename sprout::fixed_container_traits<Container>::const_iterator pos,
|
||||
T const& v
|
||||
)
|
||||
{
|
||||
return sprout::fixed::detail::set_impl<typename sprout::fixed::result_of::set<Container, T>::type>(
|
||||
cont,
|
||||
typename sprout::index_range<0, sprout::fixed_container_traits<typename sprout::fixed::result_of::set<Container, T>::type>::fixed_size>::type(),
|
||||
NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(sprout::fixed_begin(cont), pos),
|
||||
v
|
||||
);
|
||||
}
|
||||
//
|
||||
// set
|
||||
//
|
||||
template<typename Container, typename T>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::set<Container, T>::type set(
|
||||
Container const& cont,
|
||||
typename sprout::fixed_container_traits<Container>::difference_type pos,
|
||||
T const& v
|
||||
)
|
||||
{
|
||||
return sprout::fixed::detail::set_impl<typename sprout::fixed::result_of::set<Container, T>::type>(
|
||||
cont,
|
||||
typename sprout::index_range<0, sprout::fixed_container_traits<typename sprout::fixed::result_of::set<Container, T>::type>::fixed_size>::type(),
|
||||
NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(sprout::fixed_begin(cont), sprout::next(sprout::begin(cont), pos)),
|
||||
v
|
||||
);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
namespace result_of {
|
||||
using sprout::fixed::result_of::set;
|
||||
} // namespace result_of
|
||||
|
||||
using sprout::fixed::set;
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_FIXED_SET_HPP
|
8
sprout/operation/set.hpp
Normal file
8
sprout/operation/set.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_OPERATION_SET_HPP
|
||||
#define SPROUT_OPERATION_SET_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/operation/fixed/set.hpp>
|
||||
#include <sprout/operation/fit/set.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_SET_HPP
|
Loading…
Add table
Add a link
Reference in a new issue