Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- iterator ----------------------------------===// |
| 3 | // |
Chandler Carruth | d201210 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 4 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 5 | // See https://llvm.org/LICENSE.txt for license information. |
| 6 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef _LIBCPP_ITERATOR |
| 11 | #define _LIBCPP_ITERATOR |
| 12 | |
| 13 | /* |
| 14 | iterator synopsis |
| 15 | |
Christopher Di Bella | 490fe40 | 2021-03-23 03:55:52 +0000 | [diff] [blame] | 16 | #include <concepts> |
| 17 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 18 | namespace std |
| 19 | { |
Christopher Di Bella | e00eebc | 2021-03-23 20:48:41 +0000 | [diff] [blame] | 20 | template<class> struct incrementable_traits; // since C++20 |
Christopher Di Bella | a3a1006 | 2021-04-20 18:56:08 +0000 | [diff] [blame] | 21 | template<class T> |
| 22 | using iter_difference_t = see below; // since C++20 |
| 23 | |
Christopher Di Bella | e00eebc | 2021-03-23 20:48:41 +0000 | [diff] [blame] | 24 | template<class> struct indirectly_readable_traits; // since C++20 |
Christopher Di Bella | a3a1006 | 2021-04-20 18:56:08 +0000 | [diff] [blame] | 25 | template<class T> |
| 26 | using iter_value_t = see below; // since C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 27 | |
| 28 | template<class Iterator> |
zoecarver | 9f1e297 | 2021-04-20 08:50:11 -0400 | [diff] [blame] | 29 | struct iterator_traits; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 30 | |
| 31 | template<class T> |
zoecarver | 9f1e297 | 2021-04-20 08:50:11 -0400 | [diff] [blame] | 32 | requires is_object_v<T> // since C++20 |
| 33 | struct iterator_traits<T*>; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 34 | |
Christopher Di Bella | 875636f | 2021-04-04 05:12:46 +0000 | [diff] [blame] | 35 | template<dereferenceable T> |
| 36 | using iter_reference_t = decltype(*declval<T&>()); |
| 37 | |
Louis Dionne | ca989a5 | 2021-04-20 14:40:43 -0400 | [diff] [blame] | 38 | namespace ranges::inline unspecified { |
| 39 | inline constexpr unspecified iter_move = unspecified; // since C++20, nodiscard as an extension |
| 40 | }} |
| 41 | |
| 42 | template<dereferenceable T> |
| 43 | requires ... |
| 44 | using iter_rvalue_reference_t = decltype(ranges::iter_move(declval<T&>())); // since C++20 |
| 45 | |
Louis Dionne | 463afb8 | 2021-04-22 11:05:30 -0400 | [diff] [blame] | 46 | // [iterator.concepts], iterator concepts |
| 47 | // [iterator.concept.readable], concept indirectly_readable |
| 48 | template<class In> |
Louis Dionne | 170a03c | 2021-04-28 15:02:08 -0400 | [diff] [blame] | 49 | concept indirectly_readable = see below; // since C++20 |
| 50 | |
| 51 | template<indirectly_readable T> |
| 52 | using iter_common_reference_t = |
| 53 | common_reference_t<iter_reference_t<T>, iter_value_t<T>&>; // since C++20 |
Louis Dionne | 463afb8 | 2021-04-22 11:05:30 -0400 | [diff] [blame] | 54 | |
| 55 | // [iterator.concept.writable], concept indirectly_writable |
| 56 | template<class Out, class T> |
| 57 | concept indirectly_writable = see below; // since C++20 |
| 58 | |
Mark de Wever | 6639f42 | 2021-04-26 17:53:20 +0200 | [diff] [blame] | 59 | // [iterator.concept.winc], concept weakly_incrementable |
Christopher Di Bella | 54ffc18 | 2021-04-23 18:22:55 -0700 | [diff] [blame] | 60 | template<class I> |
| 61 | concept weakly_incrementable = see below; // since C++20 |
| 62 | |
| 63 | // [iterator.concept.inc], concept incrementable |
| 64 | template<class I> |
| 65 | concept incrementable = see below; // since C++20 |
| 66 | |
Mark de Wever | 6639f42 | 2021-04-26 17:53:20 +0200 | [diff] [blame] | 67 | // [iterator.concept.iterator], concept input_or_output_iterator |
Christopher Di Bella | 0ef5228 | 2021-04-09 02:10:32 +0000 | [diff] [blame] | 68 | template<class I> |
| 69 | concept input_or_output_iterator = see below; // since C++20 |
| 70 | |
Mark de Wever | 6639f42 | 2021-04-26 17:53:20 +0200 | [diff] [blame] | 71 | // [iterator.concept.sentinel], concept sentinel_for |
Christopher Di Bella | 0ef5228 | 2021-04-09 02:10:32 +0000 | [diff] [blame] | 72 | template<class S, class I> |
| 73 | concept sentinel_for = see below; // since C++20 |
| 74 | |
zoecarver | 11391bc | 2021-04-26 09:35:47 -0700 | [diff] [blame] | 75 | // [iterator.concept.sizedsentinel], concept sized_sentinel_for |
| 76 | template<class S, class I> |
| 77 | inline constexpr bool disable_sized_sentinel_for = false; |
| 78 | |
| 79 | template<class S, class I> |
| 80 | concept sized_sentinel_for = see below; |
| 81 | |
Christopher Di Bella | 8250c63 | 2021-04-11 19:04:52 +0000 | [diff] [blame] | 82 | // [iterator.concept.input], concept input_iterator |
| 83 | template<class I> |
| 84 | concept input_iterator = see below; // since C++20 |
| 85 | |
Louis Dionne | b53a0ec | 2021-07-23 15:26:23 -0400 | [diff] [blame] | 86 | // [iterator.concept.output], concept output_iterator |
| 87 | template<class I, class T> |
| 88 | concept output_iterator = see below; // since C++20 |
| 89 | |
Christopher Di Bella | 8f1370d | 2021-04-11 22:11:03 +0000 | [diff] [blame] | 90 | // [iterator.concept.forward], concept forward_iterator |
| 91 | template<class I> |
| 92 | concept forward_iterator = see below; // since C++20 |
| 93 | |
Christopher Di Bella | 10a3147 | 2021-04-12 01:16:45 +0000 | [diff] [blame] | 94 | // [iterator.concept.bidir], concept bidirectional_iterator |
| 95 | template<class I> |
| 96 | concept bidirectional_iterator = see below; // since C++20 |
| 97 | |
zoecarver | 21da57e | 2021-04-23 17:11:44 -0700 | [diff] [blame] | 98 | // [iterator.concept.random.access], concept random_access_iterator |
| 99 | template<class I> |
| 100 | concept random_access_iterator = see below; // since C++20 |
| 101 | |
Louis Dionne | 170a03c | 2021-04-28 15:02:08 -0400 | [diff] [blame] | 102 | // [indirectcallable] |
| 103 | // [indirectcallable.indirectinvocable] |
| 104 | template<class F, class I> |
| 105 | concept indirectly_unary_invocable = see below; // since C++20 |
| 106 | |
| 107 | template<class F, class I> |
| 108 | concept indirectly_regular_unary_invocable = see below; // since C++20 |
| 109 | |
| 110 | template<class F, class I> |
| 111 | concept indirect_unary_predicate = see below; // since C++20 |
| 112 | |
| 113 | template<class F, class I1, class I2> |
| 114 | concept indirect_binary_predicate = see below; // since C++20 |
| 115 | |
| 116 | template<class F, class I1, class I2 = I1> |
| 117 | concept indirect_equivalence_relation = see below; // since C++20 |
| 118 | |
| 119 | template<class F, class I1, class I2 = I1> |
| 120 | concept indirect_strict_weak_order = see below; // since C++20 |
| 121 | |
| 122 | template<class F, class... Is> |
| 123 | using indirect_result_t = see below; // since C++20 |
| 124 | |
| 125 | // [projected], projected |
| 126 | template<indirectly_readable I, indirectly_regular_unary_invocable<I> Proj> |
| 127 | struct projected; // since C++20 |
| 128 | |
| 129 | template<weakly_incrementable I, indirectly_regular_unary_invocable<I> Proj> |
| 130 | struct incrementable_traits<projected<I, Proj>>; // since C++20 |
| 131 | |
zoecarver | 7e38f80 | 2021-05-17 10:30:12 -0700 | [diff] [blame] | 132 | // [alg.req.ind.move], concept indirectly_movable |
| 133 | template<class In, class Out> |
| 134 | concept indirectly_movable = see below; // since C++20 |
| 135 | |
| 136 | template<class In, class Out> |
| 137 | concept indirectly_movable_storable = see below; // since C++20 |
| 138 | |
zoecarver | e0d9808 | 2021-07-01 11:58:54 -0700 | [diff] [blame] | 139 | // [alg.req.ind.swap], concept indirectly_swappable |
| 140 | template<class I1, class I2 = I1> |
| 141 | concept indirectly_swappable = see below; // since C++20 |
| 142 | |
zoecarver | 6eb71a9 | 2021-05-27 09:23:19 -0700 | [diff] [blame] | 143 | template<input_or_output_iterator I, sentinel_for<I> S> |
| 144 | requires (!same_as<I, S> && copyable<I>) |
| 145 | class common_iterator; // since C++20 |
| 146 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 147 | template<class Category, class T, class Distance = ptrdiff_t, |
| 148 | class Pointer = T*, class Reference = T&> |
Louis Dionne | 8762e2b | 2021-05-25 18:15:58 -0400 | [diff] [blame] | 149 | struct iterator // deprecated in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 150 | { |
| 151 | typedef T value_type; |
| 152 | typedef Distance difference_type; |
| 153 | typedef Pointer pointer; |
| 154 | typedef Reference reference; |
| 155 | typedef Category iterator_category; |
| 156 | }; |
| 157 | |
| 158 | struct input_iterator_tag {}; |
| 159 | struct output_iterator_tag {}; |
| 160 | struct forward_iterator_tag : public input_iterator_tag {}; |
| 161 | struct bidirectional_iterator_tag : public forward_iterator_tag {}; |
| 162 | struct random_access_iterator_tag : public bidirectional_iterator_tag {}; |
| 163 | |
Marshall Clow | 75468e7 | 2017-05-17 18:51:36 +0000 | [diff] [blame] | 164 | // 27.4.3, iterator operations |
Louis Dionne | 4576866 | 2020-06-08 16:16:01 -0400 | [diff] [blame] | 165 | template <class InputIterator, class Distance> // constexpr in C++17 |
| 166 | constexpr void advance(InputIterator& i, Distance n); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 167 | |
Marshall Clow | 75468e7 | 2017-05-17 18:51:36 +0000 | [diff] [blame] | 168 | template <class InputIterator> // constexpr in C++17 |
| 169 | constexpr typename iterator_traits<InputIterator>::difference_type |
| 170 | distance(InputIterator first, InputIterator last); |
| 171 | |
| 172 | template <class InputIterator> // constexpr in C++17 |
| 173 | constexpr InputIterator next(InputIterator x, |
| 174 | typename iterator_traits<InputIterator>::difference_type n = 1); |
| 175 | |
| 176 | template <class BidirectionalIterator> // constexpr in C++17 |
| 177 | constexpr BidirectionalIterator prev(BidirectionalIterator x, |
Louis Dionne | 173f29e | 2019-05-29 16:01:36 +0000 | [diff] [blame] | 178 | typename iterator_traits<BidirectionalIterator>::difference_type n = 1); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 179 | |
Christopher Di Bella | c6ead65 | 2021-05-05 07:14:08 +0000 | [diff] [blame] | 180 | // [range.iter.ops], range iterator operations |
| 181 | namespace ranges { |
| 182 | // [range.iter.op.advance], ranges::advance |
| 183 | template<input_or_output_iterator I> |
| 184 | constexpr void advance(I& i, iter_difference_t<I> n); // since C++20 |
| 185 | template<input_or_output_iterator I, sentinel_for<I> S> |
| 186 | constexpr void advance(I& i, S bound); // since C++20 |
| 187 | template<input_or_output_iterator I, sentinel_for<I> S> |
| 188 | constexpr iter_difference_t<I> advance(I& i, iter_difference_t<I> n, S bound); // since C++20 |
| 189 | } |
| 190 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 191 | template <class Iterator> |
| 192 | class reverse_iterator |
Louis Dionne | 8762e2b | 2021-05-25 18:15:58 -0400 | [diff] [blame] | 193 | : public iterator<typename iterator_traits<Iterator>::iterator_category, // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 194 | typename iterator_traits<Iterator>::value_type, |
| 195 | typename iterator_traits<Iterator>::difference_type, |
| 196 | typename iterator_traits<Iterator>::pointer, |
| 197 | typename iterator_traits<Iterator>::reference> |
| 198 | { |
| 199 | protected: |
| 200 | Iterator current; |
| 201 | public: |
| 202 | typedef Iterator iterator_type; |
| 203 | typedef typename iterator_traits<Iterator>::difference_type difference_type; |
| 204 | typedef typename iterator_traits<Iterator>::reference reference; |
| 205 | typedef typename iterator_traits<Iterator>::pointer pointer; |
Howard Hinnant | 3b6579a | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 206 | |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 207 | constexpr reverse_iterator(); |
| 208 | constexpr explicit reverse_iterator(Iterator x); |
| 209 | template <class U> constexpr reverse_iterator(const reverse_iterator<U>& u); |
| 210 | template <class U> constexpr reverse_iterator& operator=(const reverse_iterator<U>& u); |
| 211 | constexpr Iterator base() const; |
| 212 | constexpr reference operator*() const; |
| 213 | constexpr pointer operator->() const; |
| 214 | constexpr reverse_iterator& operator++(); |
| 215 | constexpr reverse_iterator operator++(int); |
| 216 | constexpr reverse_iterator& operator--(); |
| 217 | constexpr reverse_iterator operator--(int); |
| 218 | constexpr reverse_iterator operator+ (difference_type n) const; |
| 219 | constexpr reverse_iterator& operator+=(difference_type n); |
| 220 | constexpr reverse_iterator operator- (difference_type n) const; |
| 221 | constexpr reverse_iterator& operator-=(difference_type n); |
| 222 | constexpr reference operator[](difference_type n) const; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 226 | constexpr bool // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 227 | operator==(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); |
| 228 | |
| 229 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 230 | constexpr bool // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 231 | operator<(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); |
| 232 | |
| 233 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 234 | constexpr bool // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 235 | operator!=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); |
| 236 | |
| 237 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 238 | constexpr bool // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 239 | operator>(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); |
| 240 | |
| 241 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 242 | constexpr bool // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 243 | operator>=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); |
| 244 | |
| 245 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 246 | constexpr bool // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 247 | operator<=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); |
| 248 | |
| 249 | template <class Iterator1, class Iterator2> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 250 | constexpr auto |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 251 | operator-(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y) |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 252 | -> decltype(__y.base() - __x.base()); // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 253 | |
| 254 | template <class Iterator> |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 255 | constexpr reverse_iterator<Iterator> |
Louis Dionne | 173f29e | 2019-05-29 16:01:36 +0000 | [diff] [blame] | 256 | operator+(typename reverse_iterator<Iterator>::difference_type n, |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 257 | const reverse_iterator<Iterator>& x); // constexpr in C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 258 | |
Marshall Clow | 5ace554 | 2016-10-19 15:12:50 +0000 | [diff] [blame] | 259 | template <class Iterator> |
| 260 | constexpr reverse_iterator<Iterator> make_reverse_iterator(Iterator i); // C++14, constexpr in C++17 |
Marshall Clow | 6dbbdc9 | 2014-03-03 01:24:04 +0000 | [diff] [blame] | 261 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 262 | template <class Container> |
| 263 | class back_insert_iterator |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 264 | : public iterator<output_iterator_tag, void, void, void, void> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 265 | { |
| 266 | protected: |
| 267 | Container* container; |
| 268 | public: |
| 269 | typedef Container container_type; |
| 270 | typedef void value_type; |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 271 | typedef void difference_type; // until C++20 |
| 272 | typedef ptrdiff_t difference_type; // since C++20 |
Eric Fiselier | 9aeea87 | 2016-06-30 04:40:50 +0000 | [diff] [blame] | 273 | typedef void reference; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 274 | typedef void pointer; |
| 275 | |
Arthur O'Dwyer | 20638cc | 2021-02-09 19:12:16 -0500 | [diff] [blame] | 276 | explicit back_insert_iterator(Container& x); // constexpr in C++20 |
| 277 | back_insert_iterator& operator=(const typename Container::value_type& value); // constexpr in C++20 |
| 278 | back_insert_iterator& operator*(); // constexpr in C++20 |
| 279 | back_insert_iterator& operator++(); // constexpr in C++20 |
| 280 | back_insert_iterator operator++(int); // constexpr in C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 281 | }; |
| 282 | |
Arthur O'Dwyer | 20638cc | 2021-02-09 19:12:16 -0500 | [diff] [blame] | 283 | template <class Container> back_insert_iterator<Container> back_inserter(Container& x); // constexpr in C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 284 | |
| 285 | template <class Container> |
| 286 | class front_insert_iterator |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 287 | : public iterator<output_iterator_tag, void, void, void, void> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 288 | { |
| 289 | protected: |
| 290 | Container* container; |
| 291 | public: |
| 292 | typedef Container container_type; |
| 293 | typedef void value_type; |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 294 | typedef void difference_type; // until C++20 |
| 295 | typedef ptrdiff_t difference_type; // since C++20 |
Eric Fiselier | 9aeea87 | 2016-06-30 04:40:50 +0000 | [diff] [blame] | 296 | typedef void reference; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 297 | typedef void pointer; |
| 298 | |
Arthur O'Dwyer | 20638cc | 2021-02-09 19:12:16 -0500 | [diff] [blame] | 299 | explicit front_insert_iterator(Container& x); // constexpr in C++20 |
| 300 | front_insert_iterator& operator=(const typename Container::value_type& value); // constexpr in C++20 |
| 301 | front_insert_iterator& operator*(); // constexpr in C++20 |
| 302 | front_insert_iterator& operator++(); // constexpr in C++20 |
| 303 | front_insert_iterator operator++(int); // constexpr in C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 304 | }; |
| 305 | |
Arthur O'Dwyer | 20638cc | 2021-02-09 19:12:16 -0500 | [diff] [blame] | 306 | template <class Container> front_insert_iterator<Container> front_inserter(Container& x); // constexpr in C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 307 | |
| 308 | template <class Container> |
| 309 | class insert_iterator |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 310 | : public iterator<output_iterator_tag, void, void, void, void> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 311 | { |
| 312 | protected: |
| 313 | Container* container; |
| 314 | typename Container::iterator iter; |
| 315 | public: |
| 316 | typedef Container container_type; |
| 317 | typedef void value_type; |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 318 | typedef void difference_type; // until C++20 |
| 319 | typedef ptrdiff_t difference_type; // since C++20 |
Eric Fiselier | 9aeea87 | 2016-06-30 04:40:50 +0000 | [diff] [blame] | 320 | typedef void reference; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 321 | typedef void pointer; |
| 322 | |
Arthur O'Dwyer | 20638cc | 2021-02-09 19:12:16 -0500 | [diff] [blame] | 323 | insert_iterator(Container& x, typename Container::iterator i); // constexpr in C++20 |
| 324 | insert_iterator& operator=(const typename Container::value_type& value); // constexpr in C++20 |
| 325 | insert_iterator& operator*(); // constexpr in C++20 |
| 326 | insert_iterator& operator++(); // constexpr in C++20 |
| 327 | insert_iterator& operator++(int); // constexpr in C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 328 | }; |
| 329 | |
| 330 | template <class Container, class Iterator> |
Arthur O'Dwyer | 20638cc | 2021-02-09 19:12:16 -0500 | [diff] [blame] | 331 | insert_iterator<Container> inserter(Container& x, Iterator i); // constexpr in C++20 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 332 | |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 333 | template <class Iterator> |
| 334 | class move_iterator { |
| 335 | public: |
| 336 | typedef Iterator iterator_type; |
| 337 | typedef typename iterator_traits<Iterator>::difference_type difference_type; |
| 338 | typedef Iterator pointer; |
| 339 | typedef typename iterator_traits<Iterator>::value_type value_type; |
| 340 | typedef typename iterator_traits<Iterator>::iterator_category iterator_category; |
| 341 | typedef value_type&& reference; |
Louis Dionne | 173f29e | 2019-05-29 16:01:36 +0000 | [diff] [blame] | 342 | |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 343 | constexpr move_iterator(); // all the constexprs are in C++17 |
| 344 | constexpr explicit move_iterator(Iterator i); |
| 345 | template <class U> |
| 346 | constexpr move_iterator(const move_iterator<U>& u); |
| 347 | template <class U> |
| 348 | constexpr move_iterator& operator=(const move_iterator<U>& u); |
| 349 | constexpr iterator_type base() const; |
| 350 | constexpr reference operator*() const; |
| 351 | constexpr pointer operator->() const; |
| 352 | constexpr move_iterator& operator++(); |
| 353 | constexpr move_iterator operator++(int); |
| 354 | constexpr move_iterator& operator--(); |
| 355 | constexpr move_iterator operator--(int); |
Louis Dionne | 173f29e | 2019-05-29 16:01:36 +0000 | [diff] [blame] | 356 | constexpr move_iterator operator+(difference_type n) const; |
| 357 | constexpr move_iterator& operator+=(difference_type n); |
| 358 | constexpr move_iterator operator-(difference_type n) const; |
| 359 | constexpr move_iterator& operator-=(difference_type n); |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 360 | constexpr unspecified operator[](difference_type n) const; |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 361 | private: |
| 362 | Iterator current; // exposition only |
| 363 | }; |
| 364 | |
| 365 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 366 | constexpr bool // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 367 | operator==(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); |
| 368 | |
| 369 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 370 | constexpr bool // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 371 | operator!=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); |
| 372 | |
| 373 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 374 | constexpr bool // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 375 | operator<(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); |
| 376 | |
| 377 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 378 | constexpr bool // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 379 | operator<=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); |
| 380 | |
| 381 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 382 | constexpr bool // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 383 | operator>(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); |
| 384 | |
| 385 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 386 | constexpr bool // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 387 | operator>=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); |
| 388 | |
| 389 | template <class Iterator1, class Iterator2> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 390 | constexpr auto // constexpr in C++17 |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 391 | operator-(const move_iterator<Iterator1>& x, |
| 392 | const move_iterator<Iterator2>& y) -> decltype(x.base() - y.base()); |
| 393 | |
| 394 | template <class Iterator> |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 395 | constexpr move_iterator<Iterator> operator+( // constexpr in C++17 |
Louis Dionne | 173f29e | 2019-05-29 16:01:36 +0000 | [diff] [blame] | 396 | typename move_iterator<Iterator>::difference_type n, |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 397 | const move_iterator<Iterator>& x); |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 398 | |
Marshall Clow | b5f9912 | 2016-11-02 15:30:26 +0000 | [diff] [blame] | 399 | template <class Iterator> // constexpr in C++17 |
| 400 | constexpr move_iterator<Iterator> make_move_iterator(const Iterator& i); |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 401 | |
zoecarver | 63f1320 | 2021-06-01 12:55:33 -0700 | [diff] [blame] | 402 | // [default.sentinel], default sentinel |
| 403 | struct default_sentinel_t; |
| 404 | inline constexpr default_sentinel_t default_sentinel{}; |
Marshall Clow | f8fec4e | 2016-07-08 16:54:47 +0000 | [diff] [blame] | 405 | |
zoecarver | d3aca59 | 2021-07-13 11:06:10 -0700 | [diff] [blame] | 406 | // [iterators.counted], counted iterators |
| 407 | template<input_or_output_iterator I> class counted_iterator; |
| 408 | |
| 409 | template<input_iterator I> |
| 410 | requires see below |
| 411 | struct iterator_traits<counted_iterator<I>>; |
| 412 | |
zoecarver | 23001f7 | 2021-08-11 11:16:27 -0700 | [diff] [blame^] | 413 | // [unreachable.sentinel], unreachable sentinel |
| 414 | struct unreachable_sentinel_t; |
| 415 | inline constexpr unreachable_sentinel_t unreachable_sentinel{}; |
| 416 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 417 | template <class T, class charT = char, class traits = char_traits<charT>, class Distance = ptrdiff_t> |
| 418 | class istream_iterator |
Louis Dionne | 8762e2b | 2021-05-25 18:15:58 -0400 | [diff] [blame] | 419 | : public iterator<input_iterator_tag, T, Distance, const T*, const T&> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 420 | { |
| 421 | public: |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 422 | typedef input_iterator_tag iterator_category; |
| 423 | typedef T value_type; |
| 424 | typedef Distance difference_type; |
| 425 | typedef const T* pointer; |
| 426 | typedef const T& reference; |
| 427 | |
| 428 | typedef charT char_type; |
| 429 | typedef traits traits_type; |
| 430 | typedef basic_istream<charT, traits> istream_type; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 431 | |
Marshall Clow | 0735e4e | 2015-04-16 21:36:54 +0000 | [diff] [blame] | 432 | constexpr istream_iterator(); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 433 | istream_iterator(istream_type& s); |
| 434 | istream_iterator(const istream_iterator& x); |
| 435 | ~istream_iterator(); |
| 436 | |
| 437 | const T& operator*() const; |
| 438 | const T* operator->() const; |
| 439 | istream_iterator& operator++(); |
| 440 | istream_iterator operator++(int); |
| 441 | }; |
| 442 | |
| 443 | template <class T, class charT, class traits, class Distance> |
| 444 | bool operator==(const istream_iterator<T,charT,traits,Distance>& x, |
| 445 | const istream_iterator<T,charT,traits,Distance>& y); |
| 446 | template <class T, class charT, class traits, class Distance> |
| 447 | bool operator!=(const istream_iterator<T,charT,traits,Distance>& x, |
| 448 | const istream_iterator<T,charT,traits,Distance>& y); |
| 449 | |
| 450 | template <class T, class charT = char, class traits = char_traits<charT> > |
| 451 | class ostream_iterator |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 452 | : public iterator<output_iterator_tag, void, void, void, void> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 453 | { |
| 454 | public: |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 455 | typedef output_iterator_tag iterator_category; |
| 456 | typedef void value_type; |
| 457 | typedef void difference_type; // until C++20 |
| 458 | typedef ptrdiff_t difference_type; // since C++20 |
| 459 | typedef void pointer; |
| 460 | typedef void reference; |
| 461 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 462 | typedef charT char_type; |
| 463 | typedef traits traits_type; |
| 464 | typedef basic_ostream<charT,traits> ostream_type; |
| 465 | |
| 466 | ostream_iterator(ostream_type& s); |
| 467 | ostream_iterator(ostream_type& s, const charT* delimiter); |
| 468 | ostream_iterator(const ostream_iterator& x); |
| 469 | ~ostream_iterator(); |
| 470 | ostream_iterator& operator=(const T& value); |
| 471 | |
| 472 | ostream_iterator& operator*(); |
| 473 | ostream_iterator& operator++(); |
| 474 | ostream_iterator& operator++(int); |
| 475 | }; |
| 476 | |
| 477 | template<class charT, class traits = char_traits<charT> > |
| 478 | class istreambuf_iterator |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 479 | : public iterator<input_iterator_tag, charT, traits::off_type, unspecified, charT> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 480 | { |
| 481 | public: |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 482 | typedef input_iterator_tag iterator_category; |
| 483 | typedef charT value_type; |
| 484 | typedef traits::off_type difference_type; |
| 485 | typedef unspecified pointer; |
| 486 | typedef charT reference; |
| 487 | |
| 488 | typedef charT char_type; |
| 489 | typedef traits traits_type; |
| 490 | typedef traits::int_type int_type; |
| 491 | typedef basic_streambuf<charT, traits> streambuf_type; |
| 492 | typedef basic_istream<charT, traits> istream_type; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 493 | |
Howard Hinnant | 011138d | 2012-07-20 19:36:34 +0000 | [diff] [blame] | 494 | istreambuf_iterator() noexcept; |
| 495 | istreambuf_iterator(istream_type& s) noexcept; |
| 496 | istreambuf_iterator(streambuf_type* s) noexcept; |
| 497 | istreambuf_iterator(a-private-type) noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 498 | |
| 499 | charT operator*() const; |
| 500 | pointer operator->() const; |
| 501 | istreambuf_iterator& operator++(); |
| 502 | a-private-type operator++(int); |
| 503 | |
| 504 | bool equal(const istreambuf_iterator& b) const; |
| 505 | }; |
| 506 | |
| 507 | template <class charT, class traits> |
| 508 | bool operator==(const istreambuf_iterator<charT,traits>& a, |
| 509 | const istreambuf_iterator<charT,traits>& b); |
| 510 | template <class charT, class traits> |
| 511 | bool operator!=(const istreambuf_iterator<charT,traits>& a, |
| 512 | const istreambuf_iterator<charT,traits>& b); |
| 513 | |
| 514 | template <class charT, class traits = char_traits<charT> > |
| 515 | class ostreambuf_iterator |
Louis Dionne | 8762e2b | 2021-05-25 18:15:58 -0400 | [diff] [blame] | 516 | : public iterator<output_iterator_tag, void, void, void, void> // until C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 517 | { |
| 518 | public: |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 519 | typedef output_iterator_tag iterator_category; |
| 520 | typedef void value_type; |
| 521 | typedef void difference_type; // until C++20 |
| 522 | typedef ptrdiff_t difference_type; // since C++20 |
| 523 | typedef void pointer; |
| 524 | typedef void reference; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 525 | |
Louis Dionne | 3402c3c | 2021-05-27 12:56:12 -0400 | [diff] [blame] | 526 | typedef charT char_type; |
| 527 | typedef traits traits_type; |
| 528 | typedef basic_streambuf<charT, traits> streambuf_type; |
| 529 | typedef basic_ostream<charT, traits> ostream_type; |
| 530 | |
Howard Hinnant | 011138d | 2012-07-20 19:36:34 +0000 | [diff] [blame] | 531 | ostreambuf_iterator(ostream_type& s) noexcept; |
| 532 | ostreambuf_iterator(streambuf_type* s) noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 533 | ostreambuf_iterator& operator=(charT c); |
| 534 | ostreambuf_iterator& operator*(); |
| 535 | ostreambuf_iterator& operator++(); |
| 536 | ostreambuf_iterator& operator++(int); |
Howard Hinnant | 011138d | 2012-07-20 19:36:34 +0000 | [diff] [blame] | 537 | bool failed() const noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 538 | }; |
| 539 | |
Marshall Clow | 99ba002 | 2017-01-04 17:58:17 +0000 | [diff] [blame] | 540 | template <class C> constexpr auto begin(C& c) -> decltype(c.begin()); |
| 541 | template <class C> constexpr auto begin(const C& c) -> decltype(c.begin()); |
| 542 | template <class C> constexpr auto end(C& c) -> decltype(c.end()); |
| 543 | template <class C> constexpr auto end(const C& c) -> decltype(c.end()); |
| 544 | template <class T, size_t N> constexpr T* begin(T (&array)[N]); |
| 545 | template <class T, size_t N> constexpr T* end(T (&array)[N]); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 546 | |
Marshall Clow | 99ba002 | 2017-01-04 17:58:17 +0000 | [diff] [blame] | 547 | template <class C> auto constexpr cbegin(const C& c) -> decltype(std::begin(c)); // C++14 |
| 548 | template <class C> auto constexpr cend(const C& c) -> decltype(std::end(c)); // C++14 |
| 549 | template <class C> auto constexpr rbegin(C& c) -> decltype(c.rbegin()); // C++14 |
| 550 | template <class C> auto constexpr rbegin(const C& c) -> decltype(c.rbegin()); // C++14 |
| 551 | template <class C> auto constexpr rend(C& c) -> decltype(c.rend()); // C++14 |
| 552 | template <class C> constexpr auto rend(const C& c) -> decltype(c.rend()); // C++14 |
| 553 | template <class E> reverse_iterator<const E*> constexpr rbegin(initializer_list<E> il); // C++14 |
| 554 | template <class E> reverse_iterator<const E*> constexpr rend(initializer_list<E> il); // C++14 |
| 555 | template <class T, size_t N> reverse_iterator<T*> constexpr rbegin(T (&array)[N]); // C++14 |
| 556 | template <class T, size_t N> reverse_iterator<T*> constexpr rend(T (&array)[N]); // C++14 |
| 557 | template <class C> constexpr auto crbegin(const C& c) -> decltype(std::rbegin(c)); // C++14 |
| 558 | template <class C> constexpr auto crend(const C& c) -> decltype(std::rend(c)); // C++14 |
Marshall Clow | b278e9c | 2013-08-30 01:17:07 +0000 | [diff] [blame] | 559 | |
Marshall Clow | ef35727 | 2014-11-19 19:43:23 +0000 | [diff] [blame] | 560 | // 24.8, container access: |
| 561 | template <class C> constexpr auto size(const C& c) -> decltype(c.size()); // C++17 |
| 562 | template <class T, size_t N> constexpr size_t size(const T (&array)[N]) noexcept; // C++17 |
Marshall Clow | 3c5363e | 2019-02-27 02:58:56 +0000 | [diff] [blame] | 563 | |
| 564 | template <class C> constexpr auto ssize(const C& c) |
Arthur O'Dwyer | 2fc9b5d | 2021-04-17 17:03:20 -0400 | [diff] [blame] | 565 | -> common_type_t<ptrdiff_t, make_signed_t<decltype(c.size())>>; // C++20 |
Marshall Clow | 3c5363e | 2019-02-27 02:58:56 +0000 | [diff] [blame] | 566 | template <class T, ptrdiff_t> constexpr ptrdiff_t ssize(const T (&array)[N]) noexcept; // C++20 |
| 567 | |
Marshall Clow | ef35727 | 2014-11-19 19:43:23 +0000 | [diff] [blame] | 568 | template <class C> constexpr auto empty(const C& c) -> decltype(c.empty()); // C++17 |
| 569 | template <class T, size_t N> constexpr bool empty(const T (&array)[N]) noexcept; // C++17 |
| 570 | template <class E> constexpr bool empty(initializer_list<E> il) noexcept; // C++17 |
| 571 | template <class C> constexpr auto data(C& c) -> decltype(c.data()); // C++17 |
| 572 | template <class C> constexpr auto data(const C& c) -> decltype(c.data()); // C++17 |
| 573 | template <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept; // C++17 |
| 574 | template <class E> constexpr const E* data(initializer_list<E> il) noexcept; // C++17 |
| 575 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 576 | } // std |
| 577 | |
| 578 | */ |
| 579 | |
| 580 | #include <__config> |
Arthur O'Dwyer | a2f99ee | 2021-04-29 17:40:17 -0400 | [diff] [blame] | 581 | #include <__debug> |
Marshall Clow | 3dc0550 | 2014-02-27 02:11:50 +0000 | [diff] [blame] | 582 | #include <__functional_base> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 583 | #include <__iterator/access.h> |
Christopher Di Bella | c6ead65 | 2021-05-05 07:14:08 +0000 | [diff] [blame] | 584 | #include <__iterator/advance.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 585 | #include <__iterator/back_insert_iterator.h> |
zoecarver | 6eb71a9 | 2021-05-27 09:23:19 -0700 | [diff] [blame] | 586 | #include <__iterator/common_iterator.h> |
Louis Dionne | 463afb8 | 2021-04-22 11:05:30 -0400 | [diff] [blame] | 587 | #include <__iterator/concepts.h> |
zoecarver | d3aca59 | 2021-07-13 11:06:10 -0700 | [diff] [blame] | 588 | #include <__iterator/counted_iterator.h> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 589 | #include <__iterator/data.h> |
zoecarver | 63f1320 | 2021-06-01 12:55:33 -0700 | [diff] [blame] | 590 | #include <__iterator/default_sentinel.h> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 591 | #include <__iterator/distance.h> |
| 592 | #include <__iterator/empty.h> |
| 593 | #include <__iterator/erase_if_container.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 594 | #include <__iterator/front_insert_iterator.h> |
zoecarver | 61ae1dc | 2021-04-19 14:28:27 -0400 | [diff] [blame] | 595 | #include <__iterator/incrementable_traits.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 596 | #include <__iterator/insert_iterator.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 597 | #include <__iterator/istreambuf_iterator.h> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 598 | #include <__iterator/istream_iterator.h> |
| 599 | #include <__iterator/iterator.h> |
| 600 | #include <__iterator/iterator_traits.h> |
Louis Dionne | ca989a5 | 2021-04-20 14:40:43 -0400 | [diff] [blame] | 601 | #include <__iterator/iter_move.h> |
zoecarver | 31f4f5d | 2021-05-18 16:18:18 -0700 | [diff] [blame] | 602 | #include <__iterator/iter_swap.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 603 | #include <__iterator/move_iterator.h> |
Christopher Di Bella | 9c0adab | 2021-05-08 05:02:43 +0000 | [diff] [blame] | 604 | #include <__iterator/next.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 605 | #include <__iterator/ostreambuf_iterator.h> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 606 | #include <__iterator/ostream_iterator.h> |
Christopher Di Bella | b8e2104 | 2021-05-16 01:39:22 +0000 | [diff] [blame] | 607 | #include <__iterator/prev.h> |
Louis Dionne | 170a03c | 2021-04-28 15:02:08 -0400 | [diff] [blame] | 608 | #include <__iterator/projected.h> |
zoecarver | 61ae1dc | 2021-04-19 14:28:27 -0400 | [diff] [blame] | 609 | #include <__iterator/readable_traits.h> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 610 | #include <__iterator/reverse_access.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 611 | #include <__iterator/reverse_iterator.h> |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 612 | #include <__iterator/size.h> |
zoecarver | 23001f7 | 2021-08-11 11:16:27 -0700 | [diff] [blame^] | 613 | #include <__iterator/unreachable_sentinel.h> |
Louis Dionne | 7724952 | 2021-06-11 09:55:11 -0400 | [diff] [blame] | 614 | #include <__iterator/wrap_iter.h> |
Louis Dionne | 735bc46 | 2021-04-14 13:59:03 -0400 | [diff] [blame] | 615 | #include <__memory/addressof.h> |
Arthur O'Dwyer | 1ac9f09 | 2021-01-15 12:59:56 -0500 | [diff] [blame] | 616 | #include <__memory/pointer_traits.h> |
Christopher Di Bella | 41f26e8 | 2021-06-05 02:47:47 +0000 | [diff] [blame] | 617 | #include <__utility/forward.h> |
Arthur O'Dwyer | a2f99ee | 2021-04-29 17:40:17 -0400 | [diff] [blame] | 618 | #include <compare> |
| 619 | #include <concepts> // Mandated by the Standard. |
| 620 | #include <cstddef> |
| 621 | #include <initializer_list> |
Arthur O'Dwyer | a2f99ee | 2021-04-29 17:40:17 -0400 | [diff] [blame] | 622 | #include <type_traits> |
Marshall Clow | 0a1e750 | 2018-09-12 19:41:40 +0000 | [diff] [blame] | 623 | #include <version> |
Howard Hinnant | 48fd5d5 | 2012-11-14 21:17:15 +0000 | [diff] [blame] | 624 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 625 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 626 | #pragma GCC system_header |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 627 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 628 | |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 629 | #endif // _LIBCPP_ITERATOR |