mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-25 00:43:44 +00:00
64 lines
2.4 KiB
C++
64 lines
2.4 KiB
C++
|
/*=============================================================================
|
||
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
||
|
https://github.com/bolero-MURAKAMI/Sprout
|
||
|
|
||
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||
|
=============================================================================*/
|
||
|
#ifndef SPROUT_CONTAINER_BOOST_ARRAY_HPP
|
||
|
#define SPROUT_CONTAINER_BOOST_ARRAY_HPP
|
||
|
|
||
|
#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
|
||
|
|
||
|
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// container_traits
|
||
|
//
|
||
|
template<typename T, std::size_t N>
|
||
|
struct container_traits<boost::array<T, N> >
|
||
|
: 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;
|
||
|
};
|
||
|
|
||
|
//
|
||
|
// container_range_traits
|
||
|
//
|
||
|
template<typename T, std::size_t N>
|
||
|
struct container_range_traits<boost::array<T, N> >
|
||
|
: public sprout::detail::container_range_traits_default<boost::array<T, N> >
|
||
|
{
|
||
|
public:
|
||
|
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);
|
||
|
}
|
||
|
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::iterator
|
||
|
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());
|
||
|
}
|
||
|
static SPROUT_CONSTEXPR typename sprout::container_traits<boost::array<T, N> const>::iterator
|
||
|
range_end(boost::array<T, N> const& cont) {
|
||
|
return typename sprout::container_traits<boost::array<T, N> const>::iterator(cont, cont.size());
|
||
|
}
|
||
|
};
|
||
|
} // namespace sprout
|
||
|
#endif
|
||
|
|
||
|
#endif // #ifndef SPROUT_CONTAINER_BOOST_ARRAY_HPP
|