operation/set.hpp 追加

random/shuffle_order.hpp 追加
This commit is contained in:
bolero-MURAKAMI 2011-10-18 17:13:16 +09:00
commit 01a0ce4380
9 changed files with 356 additions and 2 deletions

View file

@ -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

View 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

View file

@ -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

View file

@ -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

View 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
View 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