1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/// \file
// Range v3 library
//
// Copyright Eric Niebler 2014-present
//
// Use, modification and distribution is subject to 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)
//
// Project home: https://github.com/ericniebler/range-v3
//
#ifndef RANGES_V3_ITERATOR_INSERT_ITERATORS_HPP
#define RANGES_V3_ITERATOR_INSERT_ITERATORS_HPP
#include <cstddef>
#include <utility>
#include <range/v3/range_fwd.hpp>
#include <range/v3/iterator/operations.hpp>
#include <range/v3/utility/addressof.hpp>
#include <range/v3/detail/prologue.hpp>
namespace ranges
{
/// \addtogroup group-iterator
/// @{
template<typename Container>
struct back_insert_iterator
{
using container_type = Container;
using difference_type = std::ptrdiff_t;
constexpr back_insert_iterator() = default;
constexpr explicit back_insert_iterator(Container & x)
: container_(detail::addressof(x))
{}
back_insert_iterator & operator=(typename Container::value_type const & value)
{
container_->push_back(value);
return *this;
}
back_insert_iterator & operator=(typename Container::value_type && value)
{
container_->push_back(std::move(value));
return *this;
}
back_insert_iterator & operator*()
{
return *this;
}
back_insert_iterator & operator++()
{
return *this;
}
back_insert_iterator operator++(int)
{
return *this;
}
private:
Container * container_ = nullptr;
};
struct back_inserter_fn
{
template<typename Container>
constexpr back_insert_iterator<Container> operator()(Container & x) const
{
return back_insert_iterator<Container>{x};
}
};
/// \sa `back_inserter_fn`
RANGES_INLINE_VARIABLE(back_inserter_fn, back_inserter)
template<typename Container>
struct front_insert_iterator
{
using container_type = Container;
using difference_type = std::ptrdiff_t;
constexpr front_insert_iterator() = default;
constexpr explicit front_insert_iterator(Container & x)
: container_(detail::addressof(x))
{}
front_insert_iterator & operator=(typename Container::value_type const & value)
{
container_->push_front(value);
return *this;
}
front_insert_iterator & operator=(typename Container::value_type && value)
{
container_->push_front(std::move(value));
return *this;
}
front_insert_iterator & operator*()
{
return *this;
}
front_insert_iterator & operator++()
{
return *this;
}
front_insert_iterator operator++(int)
{
return *this;
}
private:
Container * container_ = nullptr;
};
struct front_inserter_fn
{
template<typename Cont>
constexpr front_insert_iterator<Cont> operator()(Cont & cont) const
{
return front_insert_iterator<Cont>{cont};
}
};
/// \sa `front_inserter_fn`
RANGES_INLINE_VARIABLE(front_inserter_fn, front_inserter)
template<typename Container>
struct insert_iterator
{
using container_type = Container;
using difference_type = std::ptrdiff_t;
constexpr insert_iterator() = default;
constexpr explicit insert_iterator(Container & x, typename Container::iterator w)
: container_(detail::addressof(x))
, where_(w)
{}
insert_iterator & operator=(typename Container::value_type const & value)
{
where_ = ranges::next(container_->insert(where_, value));
return *this;
}
insert_iterator & operator=(typename Container::value_type && value)
{
where_ = ranges::next(container_->insert(where_, std::move(value)));
return *this;
}
insert_iterator & operator*()
{
return *this;
}
insert_iterator & operator++()
{
return *this;
}
insert_iterator & operator++(int)
{
return *this;
}
private:
Container * container_ = nullptr;
typename Container::iterator where_ = typename Container::iterator();
};
struct inserter_fn
{
template<typename Cont>
constexpr insert_iterator<Cont> operator()(Cont & cont,
typename Cont::iterator where) const
{
return insert_iterator<Cont>{cont, std::move(where)};
}
};
/// \sa `inserter_fn`
RANGES_INLINE_VARIABLE(inserter_fn, inserter)
namespace cpp20
{
using ranges::back_insert_iterator;
using ranges::back_inserter;
using ranges::front_insert_iterator;
using ranges::front_inserter;
using ranges::insert_iterator;
using ranges::inserter;
} // namespace cpp20
/// @}
} // namespace ranges
/// \cond
RANGES_DIAGNOSTIC_PUSH
RANGES_DIAGNOSTIC_IGNORE_MISMATCHED_TAGS
namespace std
{
template<typename Container>
struct iterator_traits<::ranges::back_insert_iterator<Container>>
: ::ranges::detail::std_output_iterator_traits<>
{};
template<typename Container>
struct iterator_traits<::ranges::front_insert_iterator<Container>>
: ::ranges::detail::std_output_iterator_traits<>
{};
template<typename Container>
struct iterator_traits<::ranges::insert_iterator<Container>>
: ::ranges::detail::std_output_iterator_traits<>
{};
} // namespace std
RANGES_DIAGNOSTIC_POP
/// \endcond
#include <range/v3/detail/epilogue.hpp>
#endif // RANGES_V3_ITERATOR_INSERT_ITERATORS_HPP
|