mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
change sprout::array adapt
This commit is contained in:
parent
14865d4d64
commit
92cc7881d6
5 changed files with 117 additions and 17 deletions
|
@ -8,17 +8,35 @@
|
|||
#ifndef SPROUT_CONTAINER_BOOST_ARRAY_HPP
|
||||
#define SPROUT_CONTAINER_BOOST_ARRAY_HPP
|
||||
|
||||
#include <utility>
|
||||
#include <boost/array.hpp>
|
||||
#include <sprout/config.hpp>
|
||||
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
|
||||
# include <type_traits>
|
||||
# include <sprout/workaround/std/cstddef.hpp>
|
||||
# include <sprout/container/traits.hpp>
|
||||
# include <sprout/iterator/index_iterator.hpp>
|
||||
#endif
|
||||
#include <type_traits>
|
||||
#include <sprout/workaround/std/cstddef.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/iterator/index_iterator.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
#include <sprout/functional/transparent.hpp>
|
||||
|
||||
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
|
||||
namespace sprout {
|
||||
namespace detail {
|
||||
template<typename T = void>
|
||||
struct elems_subscript;
|
||||
template<>
|
||||
struct elems_subscript<void>
|
||||
: public sprout::transparent<>
|
||||
{
|
||||
public:
|
||||
template<typename T, typename U>
|
||||
SPROUT_CONSTEXPR decltype(std::declval<T>().elems[std::declval<U>()])
|
||||
operator()(T&& x, U&& y)
|
||||
const SPROUT_NOEXCEPT_IF_EXPR(std::declval<T>().elems[std::declval<U>()])
|
||||
{
|
||||
return SPROUT_FORWARD(T, x).elems[SPROUT_FORWARD(U, y)];
|
||||
}
|
||||
};
|
||||
} // namespace detail
|
||||
|
||||
//
|
||||
// container_traits
|
||||
//
|
||||
|
@ -27,8 +45,8 @@ namespace sprout {
|
|||
: public sprout::detail::container_traits_default<boost::array<T, N> >
|
||||
{
|
||||
public:
|
||||
typedef sprout::index_iterator<boost::array<T, N>&, true> iterator;
|
||||
typedef sprout::index_iterator<boost::array<T, N> const&, true> const_iterator;
|
||||
typedef sprout::index_iterator<boost::array<T, N>&, true, sprout::detail::elems_subscript<> > iterator;
|
||||
typedef sprout::index_iterator<boost::array<T, N> const&, true, sprout::detail::elems_subscript<> > const_iterator;
|
||||
};
|
||||
|
||||
//
|
||||
|
@ -39,6 +57,7 @@ namespace sprout {
|
|||
: public sprout::detail::container_range_traits_default<boost::array<T, N> >
|
||||
{
|
||||
public:
|
||||
// iterators:
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> >::iterator
|
||||
range_begin(boost::array<T, N>& cont) {
|
||||
return typename sprout::container_traits<boost::array<T, N> >::iterator(cont, 0);
|
||||
|
@ -47,7 +66,6 @@ namespace sprout {
|
|||
range_begin(boost::array<T, N> const& cont) {
|
||||
return typename sprout::container_traits<boost::array<T, N> const>::iterator(cont, 0);
|
||||
}
|
||||
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> >::iterator
|
||||
range_end(boost::array<T, N>& cont) {
|
||||
return typename sprout::container_traits<boost::array<T, N> >::iterator(cont, cont.size());
|
||||
|
@ -56,8 +74,50 @@ namespace sprout {
|
|||
range_end(boost::array<T, N> const& cont) {
|
||||
return typename sprout::container_traits<boost::array<T, N> const>::iterator(cont, cont.size());
|
||||
}
|
||||
// capacity:
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::size_type
|
||||
range_size(boost::array<T, N> const& cont) {
|
||||
return N;
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::size_type
|
||||
range_empty(boost::array<T, N> const& cont) {
|
||||
return N != 0;
|
||||
}
|
||||
// element access:
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> >::reference
|
||||
range_front(boost::array<T, N>& cont) {
|
||||
return cont.elems[0];
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::reference
|
||||
range_front(boost::array<T, N> const& cont) {
|
||||
return cont.elems[0];
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> >::reference
|
||||
range_back(boost::array<T, N>& cont) {
|
||||
return cont.elems[N - 1];
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::reference
|
||||
range_back(boost::array<T, N> const& cont) {
|
||||
return cont.elems[N - 1];
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> >::reference
|
||||
range_at(boost::array<T, N>& cont, typename sprout::container_traits<boost::array<T, N> >::size_type i) {
|
||||
return cont.elems[i];
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::reference
|
||||
range_at(boost::array<T, N> const& cont, typename sprout::container_traits<boost::array<T, N> const>::size_type i) {
|
||||
return cont.elems[i];
|
||||
}
|
||||
// data access:
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> >::pointer
|
||||
range_data(boost::array<T, N>& cont) {
|
||||
return cont.elems;
|
||||
}
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::pointer
|
||||
range_data(boost::array<T, N> const& cont) {
|
||||
return cont.elems;
|
||||
}
|
||||
};
|
||||
} // namespace sprout
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_CONTAINER_BOOST_ARRAY_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue