2012-04-04 08:48:02 +00:00
|
|
|
#ifndef SPROUT_RANGE_RANGE_CONTAINER_HPP
|
|
|
|
#define SPROUT_RANGE_RANGE_CONTAINER_HPP
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2012-12-22 11:10:27 +00:00
|
|
|
#include <sprout/range/type_traits/lvalue_iterator.hpp>
|
2012-10-05 15:58:56 +00:00
|
|
|
#include <sprout/utility/swap.hpp>
|
2012-04-04 08:48:02 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
//
|
|
|
|
// range_container
|
|
|
|
//
|
|
|
|
template<typename Iterator>
|
|
|
|
struct range_container
|
2012-05-11 07:50:46 +00:00
|
|
|
: public sprout::container_traits_facade<Iterator>
|
2012-04-04 08:48:02 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef Iterator iterator;
|
|
|
|
typedef iterator const_iterator;
|
|
|
|
typedef typename std::iterator_traits<Iterator>::value_type value_type;
|
|
|
|
typedef typename std::iterator_traits<Iterator>::reference reference;
|
|
|
|
typedef typename std::remove_reference<reference>::type const& const_reference;
|
|
|
|
typedef typename std::iterator_traits<Iterator>::difference_type difference_type;
|
|
|
|
typedef typename std::make_unsigned<difference_type>::type size_type;
|
|
|
|
typedef typename std::iterator_traits<Iterator>::pointer pointer;
|
|
|
|
typedef typename std::remove_pointer<pointer>::type const* const_pointer;
|
|
|
|
private:
|
|
|
|
iterator first_;
|
|
|
|
iterator last_;
|
|
|
|
public:
|
|
|
|
// construct/copy/destroy:
|
2012-11-24 13:46:23 +00:00
|
|
|
SPROUT_CONSTEXPR range_container()
|
|
|
|
: first_(), last_()
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR range_container(iterator const& first, iterator const& last)
|
|
|
|
: first_(first), last_(last)
|
2012-04-04 08:48:02 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
template<typename Iterator2>
|
2012-10-05 15:58:56 +00:00
|
|
|
void swap(range_container<Iterator2>& other)
|
|
|
|
SPROUT_NOEXCEPT_EXPR(
|
|
|
|
SPROUT_NOEXCEPT_EXPR(sprout::swap(other.first_, first_))
|
|
|
|
&& SPROUT_NOEXCEPT_EXPR(sprout::swap(other.last_, last_))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
sprout::swap(other.first_, first_);
|
|
|
|
sprout::swap(other.last_, last_);
|
2012-04-04 08:48:02 +00:00
|
|
|
}
|
|
|
|
// iterators:
|
|
|
|
SPROUT_CONSTEXPR iterator begin() const {
|
|
|
|
return first_;
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR iterator end() const {
|
|
|
|
return last_;
|
|
|
|
}
|
|
|
|
// capacity:
|
|
|
|
SPROUT_CONSTEXPR size_type size() const {
|
|
|
|
return sprout::distance(first_, last_);
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR bool empty() const {
|
|
|
|
return first_ == last_;
|
|
|
|
}
|
|
|
|
// element access:
|
|
|
|
SPROUT_CONSTEXPR reference operator[](size_type i) const {
|
|
|
|
return *sprout::next(first_, i);
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR reference at(size_type i) const {
|
|
|
|
return i < size() ? *sprout::next(first_, i)
|
|
|
|
: (throw std::out_of_range("sprout::range::range_container<>: index out of range"), *sprout::next(first_, i))
|
|
|
|
;
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR reference front() const {
|
|
|
|
return *first_;
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR reference back() const {
|
|
|
|
return *sprout::next(first_, size() - 1);
|
|
|
|
}
|
|
|
|
// others:
|
|
|
|
template<typename Iterator2>
|
|
|
|
range_container<Iterator>& operator=(range_container<Iterator2> const& rhs) {
|
|
|
|
first_ = rhs.first_;
|
|
|
|
last_ = rhs.last_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
template<typename Iterator2>
|
|
|
|
range_container<Iterator>& operator=(range_container<Iterator2>&& rhs) {
|
|
|
|
first_ = std::move(rhs.first_);
|
|
|
|
last_ = std::move(rhs.last_);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// swap
|
|
|
|
//
|
|
|
|
template<typename Iterator>
|
|
|
|
inline void swap(sprout::range::range_container<Iterator>& lhs, sprout::range::range_container<Iterator>& rhs) {
|
|
|
|
lhs.swap(rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// is_range_container
|
|
|
|
//
|
|
|
|
template<typename T>
|
|
|
|
struct is_range_container
|
2012-04-13 12:23:49 +00:00
|
|
|
: public std::false_type
|
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_range_container<T const>
|
|
|
|
: public sprout::range::is_range_container<T>
|
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_range_container<T volatile>
|
|
|
|
: public sprout::range::is_range_container<T>
|
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_range_container<T const volatile>
|
|
|
|
: public sprout::range::is_range_container<T>
|
|
|
|
{};
|
|
|
|
template<typename Iterator>
|
|
|
|
struct is_range_container<sprout::range::range_container<Iterator> >
|
|
|
|
: public std::true_type
|
2012-04-04 08:48:02 +00:00
|
|
|
{};
|
2012-04-23 09:37:14 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// make_range_container
|
|
|
|
//
|
|
|
|
template<typename Range>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::range::range_container<typename sprout::range::lvalue_iterator<Range>::type>
|
|
|
|
make_range_container(Range&& range) {
|
|
|
|
return sprout::range::range_container<typename sprout::range::lvalue_iterator<Range>::type>(
|
|
|
|
sprout::begin(sprout::forward<Range>(range)),
|
|
|
|
sprout::end(sprout::forward<Range>(range))
|
|
|
|
);
|
|
|
|
}
|
2012-04-04 08:48:02 +00:00
|
|
|
} // namespace range
|
|
|
|
|
|
|
|
//
|
|
|
|
// container_traits
|
|
|
|
//
|
|
|
|
template<typename Iterator>
|
|
|
|
struct container_traits<sprout::range::range_container<Iterator> >
|
2012-04-30 01:55:33 +00:00
|
|
|
: public sprout::detail::container_traits_default<sprout::range::range_container<Iterator> >
|
2012-04-04 08:48:02 +00:00
|
|
|
{};
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_RANGE_CONTAINER_HPP
|