1 | // Iterators -*- C++ -*- |
2 | |
3 | // Copyright (C) 2001-2021 Free Software Foundation, Inc. |
4 | // |
5 | // This file is part of the GNU ISO C++ Library. This library is free |
6 | // software; you can redistribute it and/or modify it under the |
7 | // terms of the GNU General Public License as published by the |
8 | // Free Software Foundation; either version 3, or (at your option) |
9 | // any later version. |
10 | |
11 | // This library is distributed in the hope that it will be useful, |
12 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | // GNU General Public License for more details. |
15 | |
16 | // Under Section 7 of GPL version 3, you are granted additional |
17 | // permissions described in the GCC Runtime Library Exception, version |
18 | // 3.1, as published by the Free Software Foundation. |
19 | |
20 | // You should have received a copy of the GNU General Public License and |
21 | // a copy of the GCC Runtime Library Exception along with this program; |
22 | // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see |
23 | // <http://www.gnu.org/licenses/>. |
24 | |
25 | /* |
26 | * |
27 | * Copyright (c) 1994 |
28 | * Hewlett-Packard Company |
29 | * |
30 | * Permission to use, copy, modify, distribute and sell this software |
31 | * and its documentation for any purpose is hereby granted without fee, |
32 | * provided that the above copyright notice appear in all copies and |
33 | * that both that copyright notice and this permission notice appear |
34 | * in supporting documentation. Hewlett-Packard Company makes no |
35 | * representations about the suitability of this software for any |
36 | * purpose. It is provided "as is" without express or implied warranty. |
37 | * |
38 | * |
39 | * Copyright (c) 1996-1998 |
40 | * Silicon Graphics Computer Systems, Inc. |
41 | * |
42 | * Permission to use, copy, modify, distribute and sell this software |
43 | * and its documentation for any purpose is hereby granted without fee, |
44 | * provided that the above copyright notice appear in all copies and |
45 | * that both that copyright notice and this permission notice appear |
46 | * in supporting documentation. Silicon Graphics makes no |
47 | * representations about the suitability of this software for any |
48 | * purpose. It is provided "as is" without express or implied warranty. |
49 | */ |
50 | |
51 | /** @file bits/stl_iterator.h |
52 | * This is an internal header file, included by other library headers. |
53 | * Do not attempt to use it directly. @headername{iterator} |
54 | * |
55 | * This file implements reverse_iterator, back_insert_iterator, |
56 | * front_insert_iterator, insert_iterator, __normal_iterator, and their |
57 | * supporting functions and overloaded operators. |
58 | */ |
59 | |
60 | #ifndef _STL_ITERATOR_H |
61 | #define _STL_ITERATOR_H 1 |
62 | |
63 | #include <bits/cpp_type_traits.h> |
64 | #include <bits/stl_iterator_base_types.h> |
65 | #include <ext/type_traits.h> |
66 | #include <bits/move.h> |
67 | #include <bits/ptr_traits.h> |
68 | |
69 | #if __cplusplus >= 201103L |
70 | # include <type_traits> |
71 | #endif |
72 | |
73 | #if __cplusplus > 201703L |
74 | # define __cpp_lib_array_constexpr 201811L |
75 | # define __cpp_lib_constexpr_iterator 201811L |
76 | #elif __cplusplus == 201703L |
77 | # define __cpp_lib_array_constexpr 201803L |
78 | #endif |
79 | |
80 | #if __cplusplus > 201703L |
81 | # include <compare> |
82 | # include <new> |
83 | # include <bits/exception_defines.h> |
84 | # include <bits/iterator_concepts.h> |
85 | #endif |
86 | |
87 | namespace std _GLIBCXX_VISIBILITY(default) |
88 | { |
89 | _GLIBCXX_BEGIN_NAMESPACE_VERSION |
90 | |
91 | /** |
92 | * @addtogroup iterators |
93 | * @{ |
94 | */ |
95 | |
96 | #if __cplusplus > 201703L && __cpp_lib_concepts |
97 | namespace __detail |
98 | { |
99 | // Weaken iterator_category _Cat to _Limit if it is derived from that, |
100 | // otherwise use _Otherwise. |
101 | template<typename _Cat, typename _Limit, typename _Otherwise = _Cat> |
102 | using __clamp_iter_cat |
103 | = conditional_t<derived_from<_Cat, _Limit>, _Limit, _Otherwise>; |
104 | } |
105 | #endif |
106 | |
107 | // 24.4.1 Reverse iterators |
108 | /** |
109 | * Bidirectional and random access iterators have corresponding reverse |
110 | * %iterator adaptors that iterate through the data structure in the |
111 | * opposite direction. They have the same signatures as the corresponding |
112 | * iterators. The fundamental relation between a reverse %iterator and its |
113 | * corresponding %iterator @c i is established by the identity: |
114 | * @code |
115 | * &*(reverse_iterator(i)) == &*(i - 1) |
116 | * @endcode |
117 | * |
118 | * <em>This mapping is dictated by the fact that while there is always a |
119 | * pointer past the end of an array, there might not be a valid pointer |
120 | * before the beginning of an array.</em> [24.4.1]/1,2 |
121 | * |
122 | * Reverse iterators can be tricky and surprising at first. Their |
123 | * semantics make sense, however, and the trickiness is a side effect of |
124 | * the requirement that the iterators must be safe. |
125 | */ |
126 | template<typename _Iterator> |
127 | class reverse_iterator |
128 | : public iterator<typename iterator_traits<_Iterator>::iterator_category, |
129 | typename iterator_traits<_Iterator>::value_type, |
130 | typename iterator_traits<_Iterator>::difference_type, |
131 | typename iterator_traits<_Iterator>::pointer, |
132 | typename iterator_traits<_Iterator>::reference> |
133 | { |
134 | template<typename _Iter> |
135 | friend class reverse_iterator; |
136 | |
137 | #if __cpp_lib_concepts |
138 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
139 | // 3435. three_way_comparable_with<reverse_iterator<int*>, [...]> |
140 | template<typename _Iter> |
141 | static constexpr bool __convertible = !is_same_v<_Iter, _Iterator> |
142 | && convertible_to<const _Iter&, _Iterator>; |
143 | #endif |
144 | |
145 | protected: |
146 | _Iterator current; |
147 | |
148 | typedef iterator_traits<_Iterator> __traits_type; |
149 | |
150 | public: |
151 | typedef _Iterator iterator_type; |
152 | typedef typename __traits_type::pointer pointer; |
153 | #if __cplusplus <= 201703L |
154 | typedef typename __traits_type::difference_type difference_type; |
155 | typedef typename __traits_type::reference reference; |
156 | #else |
157 | using iterator_concept |
158 | = conditional_t<random_access_iterator<_Iterator>, |
159 | random_access_iterator_tag, |
160 | bidirectional_iterator_tag>; |
161 | using iterator_category |
162 | = __detail::__clamp_iter_cat<typename __traits_type::iterator_category, |
163 | random_access_iterator_tag>; |
164 | using value_type = iter_value_t<_Iterator>; |
165 | using difference_type = iter_difference_t<_Iterator>; |
166 | using reference = iter_reference_t<_Iterator>; |
167 | #endif |
168 | |
169 | /** |
170 | * The default constructor value-initializes member @p current. |
171 | * If it is a pointer, that means it is zero-initialized. |
172 | */ |
173 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
174 | // 235 No specification of default ctor for reverse_iterator |
175 | // 1012. reverse_iterator default ctor should value initialize |
176 | _GLIBCXX17_CONSTEXPR |
177 | reverse_iterator() : current() { } |
178 | |
179 | /** |
180 | * This %iterator will move in the opposite direction that @p x does. |
181 | */ |
182 | explicit _GLIBCXX17_CONSTEXPR |
183 | reverse_iterator(iterator_type __x) : current(__x) { } |
184 | |
185 | /** |
186 | * The copy constructor is normal. |
187 | */ |
188 | _GLIBCXX17_CONSTEXPR |
189 | reverse_iterator(const reverse_iterator& __x) |
190 | : current(__x.current) { } |
191 | |
192 | #if __cplusplus >= 201103L |
193 | reverse_iterator& operator=(const reverse_iterator&) = default; |
194 | #endif |
195 | |
196 | /** |
197 | * A %reverse_iterator across other types can be copied if the |
198 | * underlying %iterator can be converted to the type of @c current. |
199 | */ |
200 | template<typename _Iter> |
201 | #if __cpp_lib_concepts |
202 | requires __convertible<_Iter> |
203 | #endif |
204 | _GLIBCXX17_CONSTEXPR |
205 | reverse_iterator(const reverse_iterator<_Iter>& __x) |
206 | : current(__x.current) { } |
207 | |
208 | #if __cplusplus >= 201103L |
209 | template<typename _Iter> |
210 | #if __cpp_lib_concepts |
211 | requires __convertible<_Iter> |
212 | && assignable_from<_Iterator&, const _Iter&> |
213 | #endif |
214 | _GLIBCXX17_CONSTEXPR |
215 | reverse_iterator& |
216 | operator=(const reverse_iterator<_Iter>& __x) |
217 | { |
218 | current = __x.current; |
219 | return *this; |
220 | } |
221 | #endif |
222 | |
223 | /** |
224 | * @return @c current, the %iterator used for underlying work. |
225 | */ |
226 | _GLIBCXX17_CONSTEXPR iterator_type |
227 | base() const |
228 | { return current; } |
229 | |
230 | /** |
231 | * @return A reference to the value at @c --current |
232 | * |
233 | * This requires that @c --current is dereferenceable. |
234 | * |
235 | * @warning This implementation requires that for an iterator of the |
236 | * underlying iterator type, @c x, a reference obtained by |
237 | * @c *x remains valid after @c x has been modified or |
238 | * destroyed. This is a bug: http://gcc.gnu.org/PR51823 |
239 | */ |
240 | _GLIBCXX17_CONSTEXPR reference |
241 | operator*() const |
242 | { |
243 | _Iterator __tmp = current; |
244 | return *--__tmp; |
245 | } |
246 | |
247 | /** |
248 | * @return A pointer to the value at @c --current |
249 | * |
250 | * This requires that @c --current is dereferenceable. |
251 | */ |
252 | _GLIBCXX17_CONSTEXPR pointer |
253 | operator->() const |
254 | #if __cplusplus > 201703L && __cpp_concepts >= 201907L |
255 | requires is_pointer_v<_Iterator> |
256 | || requires(const _Iterator __i) { __i.operator->(); } |
257 | #endif |
258 | { |
259 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
260 | // 1052. operator-> should also support smart pointers |
261 | _Iterator __tmp = current; |
262 | --__tmp; |
263 | return _S_to_pointer(__tmp); |
264 | } |
265 | |
266 | /** |
267 | * @return @c *this |
268 | * |
269 | * Decrements the underlying iterator. |
270 | */ |
271 | _GLIBCXX17_CONSTEXPR reverse_iterator& |
272 | operator++() |
273 | { |
274 | --current; |
275 | return *this; |
276 | } |
277 | |
278 | /** |
279 | * @return The original value of @c *this |
280 | * |
281 | * Decrements the underlying iterator. |
282 | */ |
283 | _GLIBCXX17_CONSTEXPR reverse_iterator |
284 | operator++(int) |
285 | { |
286 | reverse_iterator __tmp = *this; |
287 | --current; |
288 | return __tmp; |
289 | } |
290 | |
291 | /** |
292 | * @return @c *this |
293 | * |
294 | * Increments the underlying iterator. |
295 | */ |
296 | _GLIBCXX17_CONSTEXPR reverse_iterator& |
297 | operator--() |
298 | { |
299 | ++current; |
300 | return *this; |
301 | } |
302 | |
303 | /** |
304 | * @return A reverse_iterator with the previous value of @c *this |
305 | * |
306 | * Increments the underlying iterator. |
307 | */ |
308 | _GLIBCXX17_CONSTEXPR reverse_iterator |
309 | operator--(int) |
310 | { |
311 | reverse_iterator __tmp = *this; |
312 | ++current; |
313 | return __tmp; |
314 | } |
315 | |
316 | /** |
317 | * @return A reverse_iterator that refers to @c current - @a __n |
318 | * |
319 | * The underlying iterator must be a Random Access Iterator. |
320 | */ |
321 | _GLIBCXX17_CONSTEXPR reverse_iterator |
322 | operator+(difference_type __n) const |
323 | { return reverse_iterator(current - __n); } |
324 | |
325 | /** |
326 | * @return *this |
327 | * |
328 | * Moves the underlying iterator backwards @a __n steps. |
329 | * The underlying iterator must be a Random Access Iterator. |
330 | */ |
331 | _GLIBCXX17_CONSTEXPR reverse_iterator& |
332 | operator+=(difference_type __n) |
333 | { |
334 | current -= __n; |
335 | return *this; |
336 | } |
337 | |
338 | /** |
339 | * @return A reverse_iterator that refers to @c current - @a __n |
340 | * |
341 | * The underlying iterator must be a Random Access Iterator. |
342 | */ |
343 | _GLIBCXX17_CONSTEXPR reverse_iterator |
344 | operator-(difference_type __n) const |
345 | { return reverse_iterator(current + __n); } |
346 | |
347 | /** |
348 | * @return *this |
349 | * |
350 | * Moves the underlying iterator forwards @a __n steps. |
351 | * The underlying iterator must be a Random Access Iterator. |
352 | */ |
353 | _GLIBCXX17_CONSTEXPR reverse_iterator& |
354 | operator-=(difference_type __n) |
355 | { |
356 | current += __n; |
357 | return *this; |
358 | } |
359 | |
360 | /** |
361 | * @return The value at @c current - @a __n - 1 |
362 | * |
363 | * The underlying iterator must be a Random Access Iterator. |
364 | */ |
365 | _GLIBCXX17_CONSTEXPR reference |
366 | operator[](difference_type __n) const |
367 | { return *(*this + __n); } |
368 | |
369 | #if __cplusplus > 201703L && __cpp_lib_concepts |
370 | friend constexpr iter_rvalue_reference_t<_Iterator> |
371 | iter_move(const reverse_iterator& __i) |
372 | noexcept(is_nothrow_copy_constructible_v<_Iterator> |
373 | && noexcept(ranges::iter_move(--std::declval<_Iterator&>()))) |
374 | { |
375 | auto __tmp = __i.base(); |
376 | return ranges::iter_move(--__tmp); |
377 | } |
378 | |
379 | template<indirectly_swappable<_Iterator> _Iter2> |
380 | friend constexpr void |
381 | iter_swap(const reverse_iterator& __x, |
382 | const reverse_iterator<_Iter2>& __y) |
383 | noexcept(is_nothrow_copy_constructible_v<_Iterator> |
384 | && is_nothrow_copy_constructible_v<_Iter2> |
385 | && noexcept(ranges::iter_swap(--std::declval<_Iterator&>(), |
386 | --std::declval<_Iter2&>()))) |
387 | { |
388 | auto __xtmp = __x.base(); |
389 | auto __ytmp = __y.base(); |
390 | ranges::iter_swap(--__xtmp, --__ytmp); |
391 | } |
392 | #endif |
393 | |
394 | private: |
395 | template<typename _Tp> |
396 | static _GLIBCXX17_CONSTEXPR _Tp* |
397 | _S_to_pointer(_Tp* __p) |
398 | { return __p; } |
399 | |
400 | template<typename _Tp> |
401 | static _GLIBCXX17_CONSTEXPR pointer |
402 | _S_to_pointer(_Tp __t) |
403 | { return __t.operator->(); } |
404 | }; |
405 | |
406 | ///@{ |
407 | /** |
408 | * @param __x A %reverse_iterator. |
409 | * @param __y A %reverse_iterator. |
410 | * @return A simple bool. |
411 | * |
412 | * Reverse iterators forward comparisons to their underlying base() |
413 | * iterators. |
414 | * |
415 | */ |
416 | #if __cplusplus <= 201703L || ! defined __cpp_lib_concepts |
417 | template<typename _Iterator> |
418 | inline _GLIBCXX17_CONSTEXPR bool |
419 | operator==(const reverse_iterator<_Iterator>& __x, |
420 | const reverse_iterator<_Iterator>& __y) |
421 | { return __x.base() == __y.base(); } |
422 | |
423 | template<typename _Iterator> |
424 | inline _GLIBCXX17_CONSTEXPR bool |
425 | operator<(const reverse_iterator<_Iterator>& __x, |
426 | const reverse_iterator<_Iterator>& __y) |
427 | { return __y.base() < __x.base(); } |
428 | |
429 | template<typename _Iterator> |
430 | inline _GLIBCXX17_CONSTEXPR bool |
431 | operator!=(const reverse_iterator<_Iterator>& __x, |
432 | const reverse_iterator<_Iterator>& __y) |
433 | { return !(__x == __y); } |
434 | |
435 | template<typename _Iterator> |
436 | inline _GLIBCXX17_CONSTEXPR bool |
437 | operator>(const reverse_iterator<_Iterator>& __x, |
438 | const reverse_iterator<_Iterator>& __y) |
439 | { return __y < __x; } |
440 | |
441 | template<typename _Iterator> |
442 | inline _GLIBCXX17_CONSTEXPR bool |
443 | operator<=(const reverse_iterator<_Iterator>& __x, |
444 | const reverse_iterator<_Iterator>& __y) |
445 | { return !(__y < __x); } |
446 | |
447 | template<typename _Iterator> |
448 | inline _GLIBCXX17_CONSTEXPR bool |
449 | operator>=(const reverse_iterator<_Iterator>& __x, |
450 | const reverse_iterator<_Iterator>& __y) |
451 | { return !(__x < __y); } |
452 | |
453 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
454 | // DR 280. Comparison of reverse_iterator to const reverse_iterator. |
455 | |
456 | template<typename _IteratorL, typename _IteratorR> |
457 | inline _GLIBCXX17_CONSTEXPR bool |
458 | operator==(const reverse_iterator<_IteratorL>& __x, |
459 | const reverse_iterator<_IteratorR>& __y) |
460 | { return __x.base() == __y.base(); } |
461 | |
462 | template<typename _IteratorL, typename _IteratorR> |
463 | inline _GLIBCXX17_CONSTEXPR bool |
464 | operator<(const reverse_iterator<_IteratorL>& __x, |
465 | const reverse_iterator<_IteratorR>& __y) |
466 | { return __x.base() > __y.base(); } |
467 | |
468 | template<typename _IteratorL, typename _IteratorR> |
469 | inline _GLIBCXX17_CONSTEXPR bool |
470 | operator!=(const reverse_iterator<_IteratorL>& __x, |
471 | const reverse_iterator<_IteratorR>& __y) |
472 | { return __x.base() != __y.base(); } |
473 | |
474 | template<typename _IteratorL, typename _IteratorR> |
475 | inline _GLIBCXX17_CONSTEXPR bool |
476 | operator>(const reverse_iterator<_IteratorL>& __x, |
477 | const reverse_iterator<_IteratorR>& __y) |
478 | { return __x.base() < __y.base(); } |
479 | |
480 | template<typename _IteratorL, typename _IteratorR> |
481 | inline _GLIBCXX17_CONSTEXPR bool |
482 | operator<=(const reverse_iterator<_IteratorL>& __x, |
483 | const reverse_iterator<_IteratorR>& __y) |
484 | { return __x.base() >= __y.base(); } |
485 | |
486 | template<typename _IteratorL, typename _IteratorR> |
487 | inline _GLIBCXX17_CONSTEXPR bool |
488 | operator>=(const reverse_iterator<_IteratorL>& __x, |
489 | const reverse_iterator<_IteratorR>& __y) |
490 | { return __x.base() <= __y.base(); } |
491 | #else // C++20 |
492 | template<typename _IteratorL, typename _IteratorR> |
493 | constexpr bool |
494 | operator==(const reverse_iterator<_IteratorL>& __x, |
495 | const reverse_iterator<_IteratorR>& __y) |
496 | requires requires { { __x.base() == __y.base() } -> convertible_to<bool>; } |
497 | { return __x.base() == __y.base(); } |
498 | |
499 | template<typename _IteratorL, typename _IteratorR> |
500 | constexpr bool |
501 | operator!=(const reverse_iterator<_IteratorL>& __x, |
502 | const reverse_iterator<_IteratorR>& __y) |
503 | requires requires { { __x.base() != __y.base() } -> convertible_to<bool>; } |
504 | { return __x.base() != __y.base(); } |
505 | |
506 | template<typename _IteratorL, typename _IteratorR> |
507 | constexpr bool |
508 | operator<(const reverse_iterator<_IteratorL>& __x, |
509 | const reverse_iterator<_IteratorR>& __y) |
510 | requires requires { { __x.base() > __y.base() } -> convertible_to<bool>; } |
511 | { return __x.base() > __y.base(); } |
512 | |
513 | template<typename _IteratorL, typename _IteratorR> |
514 | constexpr bool |
515 | operator>(const reverse_iterator<_IteratorL>& __x, |
516 | const reverse_iterator<_IteratorR>& __y) |
517 | requires requires { { __x.base() < __y.base() } -> convertible_to<bool>; } |
518 | { return __x.base() < __y.base(); } |
519 | |
520 | template<typename _IteratorL, typename _IteratorR> |
521 | constexpr bool |
522 | operator<=(const reverse_iterator<_IteratorL>& __x, |
523 | const reverse_iterator<_IteratorR>& __y) |
524 | requires requires { { __x.base() >= __y.base() } -> convertible_to<bool>; } |
525 | { return __x.base() >= __y.base(); } |
526 | |
527 | template<typename _IteratorL, typename _IteratorR> |
528 | constexpr bool |
529 | operator>=(const reverse_iterator<_IteratorL>& __x, |
530 | const reverse_iterator<_IteratorR>& __y) |
531 | requires requires { { __x.base() <= __y.base() } -> convertible_to<bool>; } |
532 | { return __x.base() <= __y.base(); } |
533 | |
534 | template<typename _IteratorL, |
535 | three_way_comparable_with<_IteratorL> _IteratorR> |
536 | constexpr compare_three_way_result_t<_IteratorL, _IteratorR> |
537 | operator<=>(const reverse_iterator<_IteratorL>& __x, |
538 | const reverse_iterator<_IteratorR>& __y) |
539 | { return __y.base() <=> __x.base(); } |
540 | #endif // C++20 |
541 | ///@} |
542 | |
543 | #if __cplusplus < 201103L |
544 | template<typename _Iterator> |
545 | inline typename reverse_iterator<_Iterator>::difference_type |
546 | operator-(const reverse_iterator<_Iterator>& __x, |
547 | const reverse_iterator<_Iterator>& __y) |
548 | { return __y.base() - __x.base(); } |
549 | |
550 | template<typename _IteratorL, typename _IteratorR> |
551 | inline typename reverse_iterator<_IteratorL>::difference_type |
552 | operator-(const reverse_iterator<_IteratorL>& __x, |
553 | const reverse_iterator<_IteratorR>& __y) |
554 | { return __y.base() - __x.base(); } |
555 | #else |
556 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
557 | // DR 685. reverse_iterator/move_iterator difference has invalid signatures |
558 | template<typename _IteratorL, typename _IteratorR> |
559 | inline _GLIBCXX17_CONSTEXPR auto |
560 | operator-(const reverse_iterator<_IteratorL>& __x, |
561 | const reverse_iterator<_IteratorR>& __y) |
562 | -> decltype(__y.base() - __x.base()) |
563 | { return __y.base() - __x.base(); } |
564 | #endif |
565 | |
566 | template<typename _Iterator> |
567 | inline _GLIBCXX17_CONSTEXPR reverse_iterator<_Iterator> |
568 | operator+(typename reverse_iterator<_Iterator>::difference_type __n, |
569 | const reverse_iterator<_Iterator>& __x) |
570 | { return reverse_iterator<_Iterator>(__x.base() - __n); } |
571 | |
572 | #if __cplusplus >= 201103L |
573 | // Same as C++14 make_reverse_iterator but used in C++11 mode too. |
574 | template<typename _Iterator> |
575 | inline _GLIBCXX17_CONSTEXPR reverse_iterator<_Iterator> |
576 | __make_reverse_iterator(_Iterator __i) |
577 | { return reverse_iterator<_Iterator>(__i); } |
578 | |
579 | # if __cplusplus >= 201402L |
580 | # define __cpp_lib_make_reverse_iterator 201402 |
581 | |
582 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
583 | // DR 2285. make_reverse_iterator |
584 | /// Generator function for reverse_iterator. |
585 | template<typename _Iterator> |
586 | inline _GLIBCXX17_CONSTEXPR reverse_iterator<_Iterator> |
587 | make_reverse_iterator(_Iterator __i) |
588 | { return reverse_iterator<_Iterator>(__i); } |
589 | |
590 | # if __cplusplus > 201703L && defined __cpp_lib_concepts |
591 | template<typename _Iterator1, typename _Iterator2> |
592 | requires (!sized_sentinel_for<_Iterator1, _Iterator2>) |
593 | inline constexpr bool |
594 | disable_sized_sentinel_for<reverse_iterator<_Iterator1>, |
595 | reverse_iterator<_Iterator2>> = true; |
596 | # endif // C++20 |
597 | # endif // C++14 |
598 | |
599 | template<typename _Iterator> |
600 | _GLIBCXX20_CONSTEXPR |
601 | auto |
602 | __niter_base(reverse_iterator<_Iterator> __it) |
603 | -> decltype(__make_reverse_iterator(__niter_base(__it.base()))) |
604 | { return __make_reverse_iterator(__niter_base(__it.base())); } |
605 | |
606 | template<typename _Iterator> |
607 | struct __is_move_iterator<reverse_iterator<_Iterator> > |
608 | : __is_move_iterator<_Iterator> |
609 | { }; |
610 | |
611 | template<typename _Iterator> |
612 | _GLIBCXX20_CONSTEXPR |
613 | auto |
614 | __miter_base(reverse_iterator<_Iterator> __it) |
615 | -> decltype(__make_reverse_iterator(__miter_base(__it.base()))) |
616 | { return __make_reverse_iterator(__miter_base(__it.base())); } |
617 | #endif // C++11 |
618 | |
619 | // 24.4.2.2.1 back_insert_iterator |
620 | /** |
621 | * @brief Turns assignment into insertion. |
622 | * |
623 | * These are output iterators, constructed from a container-of-T. |
624 | * Assigning a T to the iterator appends it to the container using |
625 | * push_back. |
626 | * |
627 | * Tip: Using the back_inserter function to create these iterators can |
628 | * save typing. |
629 | */ |
630 | template<typename _Container> |
631 | class back_insert_iterator |
632 | : public iterator<output_iterator_tag, void, void, void, void> |
633 | { |
634 | protected: |
635 | _Container* container; |
636 | |
637 | public: |
638 | /// A nested typedef for the type of whatever container you used. |
639 | typedef _Container container_type; |
640 | #if __cplusplus > 201703L |
641 | using difference_type = ptrdiff_t; |
642 | |
643 | constexpr back_insert_iterator() noexcept : container(nullptr) { } |
644 | #endif |
645 | |
646 | /// The only way to create this %iterator is with a container. |
647 | explicit _GLIBCXX20_CONSTEXPR |
648 | back_insert_iterator(_Container& __x) |
649 | : container(std::__addressof(__x)) { } |
650 | |
651 | /** |
652 | * @param __value An instance of whatever type |
653 | * container_type::const_reference is; presumably a |
654 | * reference-to-const T for container<T>. |
655 | * @return This %iterator, for chained operations. |
656 | * |
657 | * This kind of %iterator doesn't really have a @a position in the |
658 | * container (you can think of the position as being permanently at |
659 | * the end, if you like). Assigning a value to the %iterator will |
660 | * always append the value to the end of the container. |
661 | */ |
662 | #if __cplusplus < 201103L |
663 | back_insert_iterator& |
664 | operator=(typename _Container::const_reference __value) |
665 | { |
666 | container->push_back(__value); |
667 | return *this; |
668 | } |
669 | #else |
670 | _GLIBCXX20_CONSTEXPR |
671 | back_insert_iterator& |
672 | operator=(const typename _Container::value_type& __value) |
673 | { |
674 | container->push_back(__value); |
675 | return *this; |
676 | } |
677 | |
678 | _GLIBCXX20_CONSTEXPR |
679 | back_insert_iterator& |
680 | operator=(typename _Container::value_type&& __value) |
681 | { |
682 | container->push_back(std::move(__value)); |
683 | return *this; |
684 | } |
685 | #endif |
686 | |
687 | /// Simply returns *this. |
688 | _GLIBCXX20_CONSTEXPR |
689 | back_insert_iterator& |
690 | operator*() |
691 | { return *this; } |
692 | |
693 | /// Simply returns *this. (This %iterator does not @a move.) |
694 | _GLIBCXX20_CONSTEXPR |
695 | back_insert_iterator& |
696 | operator++() |
697 | { return *this; } |
698 | |
699 | /// Simply returns *this. (This %iterator does not @a move.) |
700 | _GLIBCXX20_CONSTEXPR |
701 | back_insert_iterator |
702 | operator++(int) |
703 | { return *this; } |
704 | }; |
705 | |
706 | /** |
707 | * @param __x A container of arbitrary type. |
708 | * @return An instance of back_insert_iterator working on @p __x. |
709 | * |
710 | * This wrapper function helps in creating back_insert_iterator instances. |
711 | * Typing the name of the %iterator requires knowing the precise full |
712 | * type of the container, which can be tedious and impedes generic |
713 | * programming. Using this function lets you take advantage of automatic |
714 | * template parameter deduction, making the compiler match the correct |
715 | * types for you. |
716 | */ |
717 | template<typename _Container> |
718 | _GLIBCXX20_CONSTEXPR |
719 | inline back_insert_iterator<_Container> |
720 | back_inserter(_Container& __x) |
721 | { return back_insert_iterator<_Container>(__x); } |
722 | |
723 | /** |
724 | * @brief Turns assignment into insertion. |
725 | * |
726 | * These are output iterators, constructed from a container-of-T. |
727 | * Assigning a T to the iterator prepends it to the container using |
728 | * push_front. |
729 | * |
730 | * Tip: Using the front_inserter function to create these iterators can |
731 | * save typing. |
732 | */ |
733 | template<typename _Container> |
734 | class front_insert_iterator |
735 | : public iterator<output_iterator_tag, void, void, void, void> |
736 | { |
737 | protected: |
738 | _Container* container; |
739 | |
740 | public: |
741 | /// A nested typedef for the type of whatever container you used. |
742 | typedef _Container container_type; |
743 | #if __cplusplus > 201703L |
744 | using difference_type = ptrdiff_t; |
745 | |
746 | constexpr front_insert_iterator() noexcept : container(nullptr) { } |
747 | #endif |
748 | |
749 | /// The only way to create this %iterator is with a container. |
750 | explicit _GLIBCXX20_CONSTEXPR |
751 | front_insert_iterator(_Container& __x) |
752 | : container(std::__addressof(__x)) { } |
753 | |
754 | /** |
755 | * @param __value An instance of whatever type |
756 | * container_type::const_reference is; presumably a |
757 | * reference-to-const T for container<T>. |
758 | * @return This %iterator, for chained operations. |
759 | * |
760 | * This kind of %iterator doesn't really have a @a position in the |
761 | * container (you can think of the position as being permanently at |
762 | * the front, if you like). Assigning a value to the %iterator will |
763 | * always prepend the value to the front of the container. |
764 | */ |
765 | #if __cplusplus < 201103L |
766 | front_insert_iterator& |
767 | operator=(typename _Container::const_reference __value) |
768 | { |
769 | container->push_front(__value); |
770 | return *this; |
771 | } |
772 | #else |
773 | _GLIBCXX20_CONSTEXPR |
774 | front_insert_iterator& |
775 | operator=(const typename _Container::value_type& __value) |
776 | { |
777 | container->push_front(__value); |
778 | return *this; |
779 | } |
780 | |
781 | _GLIBCXX20_CONSTEXPR |
782 | front_insert_iterator& |
783 | operator=(typename _Container::value_type&& __value) |
784 | { |
785 | container->push_front(std::move(__value)); |
786 | return *this; |
787 | } |
788 | #endif |
789 | |
790 | /// Simply returns *this. |
791 | _GLIBCXX20_CONSTEXPR |
792 | front_insert_iterator& |
793 | operator*() |
794 | { return *this; } |
795 | |
796 | /// Simply returns *this. (This %iterator does not @a move.) |
797 | _GLIBCXX20_CONSTEXPR |
798 | front_insert_iterator& |
799 | operator++() |
800 | { return *this; } |
801 | |
802 | /// Simply returns *this. (This %iterator does not @a move.) |
803 | _GLIBCXX20_CONSTEXPR |
804 | front_insert_iterator |
805 | operator++(int) |
806 | { return *this; } |
807 | }; |
808 | |
809 | /** |
810 | * @param __x A container of arbitrary type. |
811 | * @return An instance of front_insert_iterator working on @p x. |
812 | * |
813 | * This wrapper function helps in creating front_insert_iterator instances. |
814 | * Typing the name of the %iterator requires knowing the precise full |
815 | * type of the container, which can be tedious and impedes generic |
816 | * programming. Using this function lets you take advantage of automatic |
817 | * template parameter deduction, making the compiler match the correct |
818 | * types for you. |
819 | */ |
820 | template<typename _Container> |
821 | _GLIBCXX20_CONSTEXPR |
822 | inline front_insert_iterator<_Container> |
823 | front_inserter(_Container& __x) |
824 | { return front_insert_iterator<_Container>(__x); } |
825 | |
826 | /** |
827 | * @brief Turns assignment into insertion. |
828 | * |
829 | * These are output iterators, constructed from a container-of-T. |
830 | * Assigning a T to the iterator inserts it in the container at the |
831 | * %iterator's position, rather than overwriting the value at that |
832 | * position. |
833 | * |
834 | * (Sequences will actually insert a @e copy of the value before the |
835 | * %iterator's position.) |
836 | * |
837 | * Tip: Using the inserter function to create these iterators can |
838 | * save typing. |
839 | */ |
840 | template<typename _Container> |
841 | class insert_iterator |
842 | : public iterator<output_iterator_tag, void, void, void, void> |
843 | { |
844 | #if __cplusplus > 201703L && defined __cpp_lib_concepts |
845 | using _Iter = std::__detail::__range_iter_t<_Container>; |
846 | |
847 | protected: |
848 | _Container* container = nullptr; |
849 | _Iter iter = _Iter(); |
850 | #else |
851 | typedef typename _Container::iterator _Iter; |
852 | |
853 | protected: |
854 | _Container* container; |
855 | _Iter iter; |
856 | #endif |
857 | |
858 | public: |
859 | /// A nested typedef for the type of whatever container you used. |
860 | typedef _Container container_type; |
861 | |
862 | #if __cplusplus > 201703L && defined __cpp_lib_concepts |
863 | using difference_type = ptrdiff_t; |
864 | |
865 | insert_iterator() = default; |
866 | #endif |
867 | |
868 | /** |
869 | * The only way to create this %iterator is with a container and an |
870 | * initial position (a normal %iterator into the container). |
871 | */ |
872 | _GLIBCXX20_CONSTEXPR |
873 | insert_iterator(_Container& __x, _Iter __i) |
874 | : container(std::__addressof(__x)), iter(__i) {} |
875 | |
876 | /** |
877 | * @param __value An instance of whatever type |
878 | * container_type::const_reference is; presumably a |
879 | * reference-to-const T for container<T>. |
880 | * @return This %iterator, for chained operations. |
881 | * |
882 | * This kind of %iterator maintains its own position in the |
883 | * container. Assigning a value to the %iterator will insert the |
884 | * value into the container at the place before the %iterator. |
885 | * |
886 | * The position is maintained such that subsequent assignments will |
887 | * insert values immediately after one another. For example, |
888 | * @code |
889 | * // vector v contains A and Z |
890 | * |
891 | * insert_iterator i (v, ++v.begin()); |
892 | * i = 1; |
893 | * i = 2; |
894 | * i = 3; |
895 | * |
896 | * // vector v contains A, 1, 2, 3, and Z |
897 | * @endcode |
898 | */ |
899 | #if __cplusplus < 201103L |
900 | insert_iterator& |
901 | operator=(typename _Container::const_reference __value) |
902 | { |
903 | iter = container->insert(iter, __value); |
904 | ++iter; |
905 | return *this; |
906 | } |
907 | #else |
908 | _GLIBCXX20_CONSTEXPR |
909 | insert_iterator& |
910 | operator=(const typename _Container::value_type& __value) |
911 | { |
912 | iter = container->insert(iter, __value); |
913 | ++iter; |
914 | return *this; |
915 | } |
916 | |
917 | _GLIBCXX20_CONSTEXPR |
918 | insert_iterator& |
919 | operator=(typename _Container::value_type&& __value) |
920 | { |
921 | iter = container->insert(iter, std::move(__value)); |
922 | ++iter; |
923 | return *this; |
924 | } |
925 | #endif |
926 | |
927 | /// Simply returns *this. |
928 | _GLIBCXX20_CONSTEXPR |
929 | insert_iterator& |
930 | operator*() |
931 | { return *this; } |
932 | |
933 | /// Simply returns *this. (This %iterator does not @a move.) |
934 | _GLIBCXX20_CONSTEXPR |
935 | insert_iterator& |
936 | operator++() |
937 | { return *this; } |
938 | |
939 | /// Simply returns *this. (This %iterator does not @a move.) |
940 | _GLIBCXX20_CONSTEXPR |
941 | insert_iterator& |
942 | operator++(int) |
943 | { return *this; } |
944 | }; |
945 | |
946 | /** |
947 | * @param __x A container of arbitrary type. |
948 | * @param __i An iterator into the container. |
949 | * @return An instance of insert_iterator working on @p __x. |
950 | * |
951 | * This wrapper function helps in creating insert_iterator instances. |
952 | * Typing the name of the %iterator requires knowing the precise full |
953 | * type of the container, which can be tedious and impedes generic |
954 | * programming. Using this function lets you take advantage of automatic |
955 | * template parameter deduction, making the compiler match the correct |
956 | * types for you. |
957 | */ |
958 | #if __cplusplus > 201703L && defined __cpp_lib_concepts |
959 | template<typename _Container> |
960 | constexpr insert_iterator<_Container> |
961 | inserter(_Container& __x, std::__detail::__range_iter_t<_Container> __i) |
962 | { return insert_iterator<_Container>(__x, __i); } |
963 | #else |
964 | template<typename _Container> |
965 | inline insert_iterator<_Container> |
966 | inserter(_Container& __x, typename _Container::iterator __i) |
967 | { return insert_iterator<_Container>(__x, __i); } |
968 | #endif |
969 | |
970 | /// @} group iterators |
971 | |
972 | _GLIBCXX_END_NAMESPACE_VERSION |
973 | } // namespace |
974 | |
975 | namespace __gnu_cxx _GLIBCXX_VISIBILITY(default) |
976 | { |
977 | _GLIBCXX_BEGIN_NAMESPACE_VERSION |
978 | |
979 | // This iterator adapter is @a normal in the sense that it does not |
980 | // change the semantics of any of the operators of its iterator |
981 | // parameter. Its primary purpose is to convert an iterator that is |
982 | // not a class, e.g. a pointer, into an iterator that is a class. |
983 | // The _Container parameter exists solely so that different containers |
984 | // using this template can instantiate different types, even if the |
985 | // _Iterator parameter is the same. |
986 | template<typename _Iterator, typename _Container> |
987 | class __normal_iterator |
988 | { |
989 | protected: |
990 | _Iterator _M_current; |
991 | |
992 | typedef std::iterator_traits<_Iterator> __traits_type; |
993 | |
994 | public: |
995 | typedef _Iterator iterator_type; |
996 | typedef typename __traits_type::iterator_category iterator_category; |
997 | typedef typename __traits_type::value_type value_type; |
998 | typedef typename __traits_type::difference_type difference_type; |
999 | typedef typename __traits_type::reference reference; |
1000 | typedef typename __traits_type::pointer pointer; |
1001 | |
1002 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1003 | using iterator_concept = std::__detail::__iter_concept<_Iterator>; |
1004 | #endif |
1005 | |
1006 | _GLIBCXX_CONSTEXPR __normal_iterator() _GLIBCXX_NOEXCEPT |
1007 | : _M_current(_Iterator()) { } |
1008 | |
1009 | explicit _GLIBCXX20_CONSTEXPR |
1010 | __normal_iterator(const _Iterator& __i) _GLIBCXX_NOEXCEPT |
1011 | : _M_current(__i) { } |
1012 | |
1013 | // Allow iterator to const_iterator conversion |
1014 | template<typename _Iter> |
1015 | _GLIBCXX20_CONSTEXPR |
1016 | __normal_iterator(const __normal_iterator<_Iter, |
1017 | typename __enable_if< |
1018 | (std::__are_same<_Iter, typename _Container::pointer>::__value), |
1019 | _Container>::__type>& __i) _GLIBCXX_NOEXCEPT |
1020 | : _M_current(__i.base()) { } |
1021 | |
1022 | // Forward iterator requirements |
1023 | _GLIBCXX20_CONSTEXPR |
1024 | reference |
1025 | operator*() const _GLIBCXX_NOEXCEPT |
1026 | { return *_M_current; } |
1027 | |
1028 | _GLIBCXX20_CONSTEXPR |
1029 | pointer |
1030 | operator->() const _GLIBCXX_NOEXCEPT |
1031 | { return _M_current; } |
1032 | |
1033 | _GLIBCXX20_CONSTEXPR |
1034 | __normal_iterator& |
1035 | operator++() _GLIBCXX_NOEXCEPT |
1036 | { |
1037 | ++_M_current; |
1038 | return *this; |
1039 | } |
1040 | |
1041 | _GLIBCXX20_CONSTEXPR |
1042 | __normal_iterator |
1043 | operator++(int) _GLIBCXX_NOEXCEPT |
1044 | { return __normal_iterator(_M_current++); } |
1045 | |
1046 | // Bidirectional iterator requirements |
1047 | _GLIBCXX20_CONSTEXPR |
1048 | __normal_iterator& |
1049 | operator--() _GLIBCXX_NOEXCEPT |
1050 | { |
1051 | --_M_current; |
1052 | return *this; |
1053 | } |
1054 | |
1055 | _GLIBCXX20_CONSTEXPR |
1056 | __normal_iterator |
1057 | operator--(int) _GLIBCXX_NOEXCEPT |
1058 | { return __normal_iterator(_M_current--); } |
1059 | |
1060 | // Random access iterator requirements |
1061 | _GLIBCXX20_CONSTEXPR |
1062 | reference |
1063 | operator[](difference_type __n) const _GLIBCXX_NOEXCEPT |
1064 | { return _M_current[__n]; } |
1065 | |
1066 | _GLIBCXX20_CONSTEXPR |
1067 | __normal_iterator& |
1068 | operator+=(difference_type __n) _GLIBCXX_NOEXCEPT |
1069 | { _M_current += __n; return *this; } |
1070 | |
1071 | _GLIBCXX20_CONSTEXPR |
1072 | __normal_iterator |
1073 | operator+(difference_type __n) const _GLIBCXX_NOEXCEPT |
1074 | { return __normal_iterator(_M_current + __n); } |
1075 | |
1076 | _GLIBCXX20_CONSTEXPR |
1077 | __normal_iterator& |
1078 | operator-=(difference_type __n) _GLIBCXX_NOEXCEPT |
1079 | { _M_current -= __n; return *this; } |
1080 | |
1081 | _GLIBCXX20_CONSTEXPR |
1082 | __normal_iterator |
1083 | operator-(difference_type __n) const _GLIBCXX_NOEXCEPT |
1084 | { return __normal_iterator(_M_current - __n); } |
1085 | |
1086 | _GLIBCXX20_CONSTEXPR |
1087 | const _Iterator& |
1088 | base() const _GLIBCXX_NOEXCEPT |
1089 | { return _M_current; } |
1090 | }; |
1091 | |
1092 | // Note: In what follows, the left- and right-hand-side iterators are |
1093 | // allowed to vary in types (conceptually in cv-qualification) so that |
1094 | // comparison between cv-qualified and non-cv-qualified iterators be |
1095 | // valid. However, the greedy and unfriendly operators in std::rel_ops |
1096 | // will make overload resolution ambiguous (when in scope) if we don't |
1097 | // provide overloads whose operands are of the same type. Can someone |
1098 | // remind me what generic programming is about? -- Gaby |
1099 | |
1100 | #if __cpp_lib_three_way_comparison |
1101 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1102 | requires requires (_IteratorL __lhs, _IteratorR __rhs) |
1103 | { { __lhs == __rhs } -> std::convertible_to<bool>; } |
1104 | constexpr bool |
1105 | operator==(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1106 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1107 | noexcept(noexcept(__lhs.base() == __rhs.base())) |
1108 | { return __lhs.base() == __rhs.base(); } |
1109 | |
1110 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1111 | constexpr std::__detail::__synth3way_t<_IteratorR, _IteratorL> |
1112 | operator<=>(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1113 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1114 | noexcept(noexcept(std::__detail::__synth3way(__lhs.base(), __rhs.base()))) |
1115 | { return std::__detail::__synth3way(__lhs.base(), __rhs.base()); } |
1116 | #else |
1117 | // Forward iterator requirements |
1118 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1119 | _GLIBCXX20_CONSTEXPR |
1120 | inline bool |
1121 | operator==(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1122 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1123 | _GLIBCXX_NOEXCEPT |
1124 | { return __lhs.base() == __rhs.base(); } |
1125 | |
1126 | template<typename _Iterator, typename _Container> |
1127 | _GLIBCXX20_CONSTEXPR |
1128 | inline bool |
1129 | operator==(const __normal_iterator<_Iterator, _Container>& __lhs, |
1130 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1131 | _GLIBCXX_NOEXCEPT |
1132 | { return __lhs.base() == __rhs.base(); } |
1133 | |
1134 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1135 | _GLIBCXX20_CONSTEXPR |
1136 | inline bool |
1137 | operator!=(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1138 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1139 | _GLIBCXX_NOEXCEPT |
1140 | { return __lhs.base() != __rhs.base(); } |
1141 | |
1142 | template<typename _Iterator, typename _Container> |
1143 | _GLIBCXX20_CONSTEXPR |
1144 | inline bool |
1145 | operator!=(const __normal_iterator<_Iterator, _Container>& __lhs, |
1146 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1147 | _GLIBCXX_NOEXCEPT |
1148 | { return __lhs.base() != __rhs.base(); } |
1149 | |
1150 | // Random access iterator requirements |
1151 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1152 | inline bool |
1153 | operator<(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1154 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1155 | _GLIBCXX_NOEXCEPT |
1156 | { return __lhs.base() < __rhs.base(); } |
1157 | |
1158 | template<typename _Iterator, typename _Container> |
1159 | _GLIBCXX20_CONSTEXPR |
1160 | inline bool |
1161 | operator<(const __normal_iterator<_Iterator, _Container>& __lhs, |
1162 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1163 | _GLIBCXX_NOEXCEPT |
1164 | { return __lhs.base() < __rhs.base(); } |
1165 | |
1166 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1167 | inline bool |
1168 | operator>(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1169 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1170 | _GLIBCXX_NOEXCEPT |
1171 | { return __lhs.base() > __rhs.base(); } |
1172 | |
1173 | template<typename _Iterator, typename _Container> |
1174 | _GLIBCXX20_CONSTEXPR |
1175 | inline bool |
1176 | operator>(const __normal_iterator<_Iterator, _Container>& __lhs, |
1177 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1178 | _GLIBCXX_NOEXCEPT |
1179 | { return __lhs.base() > __rhs.base(); } |
1180 | |
1181 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1182 | inline bool |
1183 | operator<=(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1184 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1185 | _GLIBCXX_NOEXCEPT |
1186 | { return __lhs.base() <= __rhs.base(); } |
1187 | |
1188 | template<typename _Iterator, typename _Container> |
1189 | _GLIBCXX20_CONSTEXPR |
1190 | inline bool |
1191 | operator<=(const __normal_iterator<_Iterator, _Container>& __lhs, |
1192 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1193 | _GLIBCXX_NOEXCEPT |
1194 | { return __lhs.base() <= __rhs.base(); } |
1195 | |
1196 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1197 | inline bool |
1198 | operator>=(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1199 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1200 | _GLIBCXX_NOEXCEPT |
1201 | { return __lhs.base() >= __rhs.base(); } |
1202 | |
1203 | template<typename _Iterator, typename _Container> |
1204 | _GLIBCXX20_CONSTEXPR |
1205 | inline bool |
1206 | operator>=(const __normal_iterator<_Iterator, _Container>& __lhs, |
1207 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1208 | _GLIBCXX_NOEXCEPT |
1209 | { return __lhs.base() >= __rhs.base(); } |
1210 | #endif // three-way comparison |
1211 | |
1212 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
1213 | // According to the resolution of DR179 not only the various comparison |
1214 | // operators but also operator- must accept mixed iterator/const_iterator |
1215 | // parameters. |
1216 | template<typename _IteratorL, typename _IteratorR, typename _Container> |
1217 | #if __cplusplus >= 201103L |
1218 | // DR 685. |
1219 | _GLIBCXX20_CONSTEXPR |
1220 | inline auto |
1221 | operator-(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1222 | const __normal_iterator<_IteratorR, _Container>& __rhs) noexcept |
1223 | -> decltype(__lhs.base() - __rhs.base()) |
1224 | #else |
1225 | inline typename __normal_iterator<_IteratorL, _Container>::difference_type |
1226 | operator-(const __normal_iterator<_IteratorL, _Container>& __lhs, |
1227 | const __normal_iterator<_IteratorR, _Container>& __rhs) |
1228 | #endif |
1229 | { return __lhs.base() - __rhs.base(); } |
1230 | |
1231 | template<typename _Iterator, typename _Container> |
1232 | _GLIBCXX20_CONSTEXPR |
1233 | inline typename __normal_iterator<_Iterator, _Container>::difference_type |
1234 | operator-(const __normal_iterator<_Iterator, _Container>& __lhs, |
1235 | const __normal_iterator<_Iterator, _Container>& __rhs) |
1236 | _GLIBCXX_NOEXCEPT |
1237 | { return __lhs.base() - __rhs.base(); } |
1238 | |
1239 | template<typename _Iterator, typename _Container> |
1240 | _GLIBCXX20_CONSTEXPR |
1241 | inline __normal_iterator<_Iterator, _Container> |
1242 | operator+(typename __normal_iterator<_Iterator, _Container>::difference_type |
1243 | __n, const __normal_iterator<_Iterator, _Container>& __i) |
1244 | _GLIBCXX_NOEXCEPT |
1245 | { return __normal_iterator<_Iterator, _Container>(__i.base() + __n); } |
1246 | |
1247 | _GLIBCXX_END_NAMESPACE_VERSION |
1248 | } // namespace |
1249 | |
1250 | namespace std _GLIBCXX_VISIBILITY(default) |
1251 | { |
1252 | _GLIBCXX_BEGIN_NAMESPACE_VERSION |
1253 | |
1254 | template<typename _Iterator, typename _Container> |
1255 | _GLIBCXX20_CONSTEXPR |
1256 | _Iterator |
1257 | __niter_base(__gnu_cxx::__normal_iterator<_Iterator, _Container> __it) |
1258 | _GLIBCXX_NOEXCEPT_IF(std::is_nothrow_copy_constructible<_Iterator>::value) |
1259 | { return __it.base(); } |
1260 | |
1261 | #if __cplusplus >= 201103L |
1262 | /** |
1263 | * @addtogroup iterators |
1264 | * @{ |
1265 | */ |
1266 | |
1267 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1268 | template<semiregular _Sent> |
1269 | class move_sentinel |
1270 | { |
1271 | public: |
1272 | constexpr |
1273 | move_sentinel() |
1274 | noexcept(is_nothrow_default_constructible_v<_Sent>) |
1275 | : _M_last() { } |
1276 | |
1277 | constexpr explicit |
1278 | move_sentinel(_Sent __s) |
1279 | noexcept(is_nothrow_move_constructible_v<_Sent>) |
1280 | : _M_last(std::move(__s)) { } |
1281 | |
1282 | template<typename _S2> requires convertible_to<const _S2&, _Sent> |
1283 | constexpr |
1284 | move_sentinel(const move_sentinel<_S2>& __s) |
1285 | noexcept(is_nothrow_constructible_v<_Sent, const _S2&>) |
1286 | : _M_last(__s.base()) |
1287 | { } |
1288 | |
1289 | template<typename _S2> requires assignable_from<_Sent&, const _S2&> |
1290 | constexpr move_sentinel& |
1291 | operator=(const move_sentinel<_S2>& __s) |
1292 | noexcept(is_nothrow_assignable_v<_Sent, const _S2&>) |
1293 | { |
1294 | _M_last = __s.base(); |
1295 | return *this; |
1296 | } |
1297 | |
1298 | constexpr _Sent |
1299 | base() const |
1300 | noexcept(is_nothrow_copy_constructible_v<_Sent>) |
1301 | { return _M_last; } |
1302 | |
1303 | private: |
1304 | _Sent _M_last; |
1305 | }; |
1306 | #endif // C++20 |
1307 | |
1308 | namespace __detail |
1309 | { |
1310 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1311 | template<typename _Iterator> |
1312 | struct __move_iter_cat |
1313 | { }; |
1314 | |
1315 | template<typename _Iterator> |
1316 | requires requires { typename iterator_traits<_Iterator>::iterator_category; } |
1317 | struct __move_iter_cat<_Iterator> |
1318 | { |
1319 | using iterator_category |
1320 | = __clamp_iter_cat<typename iterator_traits<_Iterator>::iterator_category, |
1321 | random_access_iterator_tag>; |
1322 | }; |
1323 | #endif |
1324 | } |
1325 | |
1326 | // 24.4.3 Move iterators |
1327 | /** |
1328 | * Class template move_iterator is an iterator adapter with the same |
1329 | * behavior as the underlying iterator except that its dereference |
1330 | * operator implicitly converts the value returned by the underlying |
1331 | * iterator's dereference operator to an rvalue reference. Some |
1332 | * generic algorithms can be called with move iterators to replace |
1333 | * copying with moving. |
1334 | */ |
1335 | template<typename _Iterator> |
1336 | class move_iterator |
1337 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1338 | : public __detail::__move_iter_cat<_Iterator> |
1339 | #endif |
1340 | { |
1341 | _Iterator _M_current; |
1342 | |
1343 | using __traits_type = iterator_traits<_Iterator>; |
1344 | #if ! (__cplusplus > 201703L && __cpp_lib_concepts) |
1345 | using __base_ref = typename __traits_type::reference; |
1346 | #endif |
1347 | |
1348 | template<typename _Iter2> |
1349 | friend class move_iterator; |
1350 | |
1351 | #if __cpp_lib_concepts |
1352 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
1353 | // 3435. three_way_comparable_with<reverse_iterator<int*>, [...]> |
1354 | template<typename _Iter2> |
1355 | static constexpr bool __convertible = !is_same_v<_Iter2, _Iterator> |
1356 | && convertible_to<const _Iter2&, _Iterator>; |
1357 | #endif |
1358 | |
1359 | public: |
1360 | using iterator_type = _Iterator; |
1361 | |
1362 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1363 | using iterator_concept = input_iterator_tag; |
1364 | // iterator_category defined in __move_iter_cat |
1365 | using value_type = iter_value_t<_Iterator>; |
1366 | using difference_type = iter_difference_t<_Iterator>; |
1367 | using pointer = _Iterator; |
1368 | using reference = iter_rvalue_reference_t<_Iterator>; |
1369 | #else |
1370 | typedef typename __traits_type::iterator_category iterator_category; |
1371 | typedef typename __traits_type::value_type value_type; |
1372 | typedef typename __traits_type::difference_type difference_type; |
1373 | // NB: DR 680. |
1374 | typedef _Iterator pointer; |
1375 | // _GLIBCXX_RESOLVE_LIB_DEFECTS |
1376 | // 2106. move_iterator wrapping iterators returning prvalues |
1377 | typedef typename conditional<is_reference<__base_ref>::value, |
1378 | typename remove_reference<__base_ref>::type&&, |
1379 | __base_ref>::type reference; |
1380 | #endif |
1381 | |
1382 | _GLIBCXX17_CONSTEXPR |
1383 | move_iterator() |
1384 | : _M_current() { } |
1385 | |
1386 | explicit _GLIBCXX17_CONSTEXPR |
1387 | move_iterator(iterator_type __i) |
1388 | : _M_current(std::move(__i)) { } |
1389 | |
1390 | template<typename _Iter> |
1391 | #if __cpp_lib_concepts |
1392 | requires __convertible<_Iter> |
1393 | #endif |
1394 | _GLIBCXX17_CONSTEXPR |
1395 | move_iterator(const move_iterator<_Iter>& __i) |
1396 | : _M_current(__i._M_current) { } |
1397 | |
1398 | template<typename _Iter> |
1399 | #if __cpp_lib_concepts |
1400 | requires __convertible<_Iter> |
1401 | && assignable_from<_Iterator&, const _Iter&> |
1402 | #endif |
1403 | _GLIBCXX17_CONSTEXPR |
1404 | move_iterator& operator=(const move_iterator<_Iter>& __i) |
1405 | { |
1406 | _M_current = __i._M_current; |
1407 | return *this; |
1408 | } |
1409 | |
1410 | #if __cplusplus <= 201703L |
1411 | _GLIBCXX17_CONSTEXPR iterator_type |
1412 | base() const |
1413 | { return _M_current; } |
1414 | #else |
1415 | constexpr const iterator_type& |
1416 | base() const & noexcept |
1417 | { return _M_current; } |
1418 | |
1419 | constexpr iterator_type |
1420 | base() && |
1421 | { return std::move(_M_current); } |
1422 | #endif |
1423 | |
1424 | _GLIBCXX17_CONSTEXPR reference |
1425 | operator*() const |
1426 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1427 | { return ranges::iter_move(_M_current); } |
1428 | #else |
1429 | { return static_cast<reference>(*_M_current); } |
1430 | #endif |
1431 | |
1432 | _GLIBCXX17_CONSTEXPR pointer |
1433 | operator->() const |
1434 | { return _M_current; } |
1435 | |
1436 | _GLIBCXX17_CONSTEXPR move_iterator& |
1437 | operator++() |
1438 | { |
1439 | ++_M_current; |
1440 | return *this; |
1441 | } |
1442 | |
1443 | _GLIBCXX17_CONSTEXPR move_iterator |
1444 | operator++(int) |
1445 | { |
1446 | move_iterator __tmp = *this; |
1447 | ++_M_current; |
1448 | return __tmp; |
1449 | } |
1450 | |
1451 | #if __cpp_lib_concepts |
1452 | constexpr void |
1453 | operator++(int) requires (!forward_iterator<_Iterator>) |
1454 | { ++_M_current; } |
1455 | #endif |
1456 | |
1457 | _GLIBCXX17_CONSTEXPR move_iterator& |
1458 | operator--() |
1459 | { |
1460 | --_M_current; |
1461 | return *this; |
1462 | } |
1463 | |
1464 | _GLIBCXX17_CONSTEXPR move_iterator |
1465 | operator--(int) |
1466 | { |
1467 | move_iterator __tmp = *this; |
1468 | --_M_current; |
1469 | return __tmp; |
1470 | } |
1471 | |
1472 | _GLIBCXX17_CONSTEXPR move_iterator |
1473 | operator+(difference_type __n) const |
1474 | { return move_iterator(_M_current + __n); } |
1475 | |
1476 | _GLIBCXX17_CONSTEXPR move_iterator& |
1477 | operator+=(difference_type __n) |
1478 | { |
1479 | _M_current += __n; |
1480 | return *this; |
1481 | } |
1482 | |
1483 | _GLIBCXX17_CONSTEXPR move_iterator |
1484 | operator-(difference_type __n) const |
1485 | { return move_iterator(_M_current - __n); } |
1486 | |
1487 | _GLIBCXX17_CONSTEXPR move_iterator& |
1488 | operator-=(difference_type __n) |
1489 | { |
1490 | _M_current -= __n; |
1491 | return *this; |
1492 | } |
1493 | |
1494 | _GLIBCXX17_CONSTEXPR reference |
1495 | operator[](difference_type __n) const |
1496 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1497 | { return ranges::iter_move(_M_current + __n); } |
1498 | #else |
1499 | { return std::move(_M_current[__n]); } |
1500 | #endif |
1501 | |
1502 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1503 | template<sentinel_for<_Iterator> _Sent> |
1504 | friend constexpr bool |
1505 | operator==(const move_iterator& __x, const move_sentinel<_Sent>& __y) |
1506 | { return __x.base() == __y.base(); } |
1507 | |
1508 | template<sized_sentinel_for<_Iterator> _Sent> |
1509 | friend constexpr iter_difference_t<_Iterator> |
1510 | operator-(const move_sentinel<_Sent>& __x, const move_iterator& __y) |
1511 | { return __x.base() - __y.base(); } |
1512 | |
1513 | template<sized_sentinel_for<_Iterator> _Sent> |
1514 | friend constexpr iter_difference_t<_Iterator> |
1515 | operator-(const move_iterator& __x, const move_sentinel<_Sent>& __y) |
1516 | { return __x.base() - __y.base(); } |
1517 | |
1518 | friend constexpr iter_rvalue_reference_t<_Iterator> |
1519 | iter_move(const move_iterator& __i) |
1520 | noexcept(noexcept(ranges::iter_move(__i._M_current))) |
1521 | { return ranges::iter_move(__i._M_current); } |
1522 | |
1523 | template<indirectly_swappable<_Iterator> _Iter2> |
1524 | friend constexpr void |
1525 | iter_swap(const move_iterator& __x, const move_iterator<_Iter2>& __y) |
1526 | noexcept(noexcept(ranges::iter_swap(__x._M_current, __y._M_current))) |
1527 | { return ranges::iter_swap(__x._M_current, __y._M_current); } |
1528 | #endif // C++20 |
1529 | }; |
1530 | |
1531 | template<typename _IteratorL, typename _IteratorR> |
1532 | inline _GLIBCXX17_CONSTEXPR bool |
1533 | operator==(const move_iterator<_IteratorL>& __x, |
1534 | const move_iterator<_IteratorR>& __y) |
1535 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1536 | requires requires { { __x.base() == __y.base() } -> convertible_to<bool>; } |
1537 | #endif |
1538 | { return __x.base() == __y.base(); } |
1539 | |
1540 | #if __cpp_lib_three_way_comparison |
1541 | template<typename _IteratorL, |
1542 | three_way_comparable_with<_IteratorL> _IteratorR> |
1543 | constexpr compare_three_way_result_t<_IteratorL, _IteratorR> |
1544 | operator<=>(const move_iterator<_IteratorL>& __x, |
1545 | const move_iterator<_IteratorR>& __y) |
1546 | { return __x.base() <=> __y.base(); } |
1547 | #else |
1548 | template<typename _IteratorL, typename _IteratorR> |
1549 | inline _GLIBCXX17_CONSTEXPR bool |
1550 | operator!=(const move_iterator<_IteratorL>& __x, |
1551 | const move_iterator<_IteratorR>& __y) |
1552 | { return !(__x == __y); } |
1553 | #endif |
1554 | |
1555 | template<typename _IteratorL, typename _IteratorR> |
1556 | inline _GLIBCXX17_CONSTEXPR bool |
1557 | operator<(const move_iterator<_IteratorL>& __x, |
1558 | const move_iterator<_IteratorR>& __y) |
1559 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1560 | requires requires { { __x.base() < __y.base() } -> convertible_to<bool>; } |
1561 | #endif |
1562 | { return __x.base() < __y.base(); } |
1563 | |
1564 | template<typename _IteratorL, typename _IteratorR> |
1565 | inline _GLIBCXX17_CONSTEXPR bool |
1566 | operator<=(const move_iterator<_IteratorL>& __x, |
1567 | const move_iterator<_IteratorR>& __y) |
1568 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1569 | requires requires { { __y.base() < __x.base() } -> convertible_to<bool>; } |
1570 | #endif |
1571 | { return !(__y < __x); } |
1572 | |
1573 | template<typename _IteratorL, typename _IteratorR> |
1574 | inline _GLIBCXX17_CONSTEXPR bool |
1575 | operator>(const move_iterator<_IteratorL>& __x, |
1576 | const move_iterator<_IteratorR>& __y) |
1577 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1578 | requires requires { { __y.base() < __x.base() } -> convertible_to<bool>; } |
1579 | #endif |
1580 | { return __y < __x; } |
1581 | |
1582 | template<typename _IteratorL, typename _IteratorR> |
1583 | inline _GLIBCXX17_CONSTEXPR bool |
1584 | operator>=(const move_iterator<_IteratorL>& __x, |
1585 | const move_iterator<_IteratorR>& __y) |
1586 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1587 | requires requires { { __x.base() < __y.base() } -> convertible_to<bool>; } |
1588 | #endif |
1589 | { return !(__x < __y); } |
1590 | |
1591 | #if ! (__cplusplus > 201703L && __cpp_lib_concepts) |
1592 | // Note: See __normal_iterator operators note from Gaby to understand |
1593 | // why we have these extra overloads for some move_iterator operators. |
1594 | |
1595 | // These extra overloads are not needed in C++20, because the ones above |
1596 | // are constrained with a requires-clause and so overload resolution will |
1597 | // prefer them to greedy unconstrained function templates. |
1598 | |
1599 | template<typename _Iterator> |
1600 | inline _GLIBCXX17_CONSTEXPR bool |
1601 | operator==(const move_iterator<_Iterator>& __x, |
1602 | const move_iterator<_Iterator>& __y) |
1603 | { return __x.base() == __y.base(); } |
1604 | |
1605 | template<typename _Iterator> |
1606 | inline _GLIBCXX17_CONSTEXPR bool |
1607 | operator!=(const move_iterator<_Iterator>& __x, |
1608 | const move_iterator<_Iterator>& __y) |
1609 | { return !(__x == __y); } |
1610 | |
1611 | template<typename _Iterator> |
1612 | inline _GLIBCXX17_CONSTEXPR bool |
1613 | operator<(const move_iterator<_Iterator>& __x, |
1614 | const move_iterator<_Iterator>& __y) |
1615 | { return __x.base() < __y.base(); } |
1616 | |
1617 | template<typename _Iterator> |
1618 | inline _GLIBCXX17_CONSTEXPR bool |
1619 | operator<=(const move_iterator<_Iterator>& __x, |
1620 | const move_iterator<_Iterator>& __y) |
1621 | { return !(__y < __x); } |
1622 | |
1623 | template<typename _Iterator> |
1624 | inline _GLIBCXX17_CONSTEXPR bool |
1625 | operator>(const move_iterator<_Iterator>& __x, |
1626 | const move_iterator<_Iterator>& __y) |
1627 | { return __y < __x; } |
1628 | |
1629 | template<typename _Iterator> |
1630 | inline _GLIBCXX17_CONSTEXPR bool |
1631 | operator>=(const move_iterator<_Iterator>& __x, |
1632 | const move_iterator<_Iterator>& __y) |
1633 | { return !(__x < __y); } |
1634 | #endif // ! C++20 |
1635 | |
1636 | // DR 685. |
1637 | template<typename _IteratorL, typename _IteratorR> |
1638 | inline _GLIBCXX17_CONSTEXPR auto |
1639 | operator-(const move_iterator<_IteratorL>& __x, |
1640 | const move_iterator<_IteratorR>& __y) |
1641 | -> decltype(__x.base() - __y.base()) |
1642 | { return __x.base() - __y.base(); } |
1643 | |
1644 | template<typename _Iterator> |
1645 | inline _GLIBCXX17_CONSTEXPR move_iterator<_Iterator> |
1646 | operator+(typename move_iterator<_Iterator>::difference_type __n, |
1647 | const move_iterator<_Iterator>& __x) |
1648 | { return __x + __n; } |
1649 | |
1650 | template<typename _Iterator> |
1651 | inline _GLIBCXX17_CONSTEXPR move_iterator<_Iterator> |
1652 | make_move_iterator(_Iterator __i) |
1653 | { return move_iterator<_Iterator>(std::move(__i)); } |
1654 | |
1655 | template<typename _Iterator, typename _ReturnType |
1656 | = typename conditional<__move_if_noexcept_cond |
1657 | <typename iterator_traits<_Iterator>::value_type>::value, |
1658 | _Iterator, move_iterator<_Iterator>>::type> |
1659 | inline _GLIBCXX17_CONSTEXPR _ReturnType |
1660 | __make_move_if_noexcept_iterator(_Iterator __i) |
1661 | { return _ReturnType(__i); } |
1662 | |
1663 | // Overload for pointers that matches std::move_if_noexcept more closely, |
1664 | // returning a constant iterator when we don't want to move. |
1665 | template<typename _Tp, typename _ReturnType |
1666 | = typename conditional<__move_if_noexcept_cond<_Tp>::value, |
1667 | const _Tp*, move_iterator<_Tp*>>::type> |
1668 | inline _GLIBCXX17_CONSTEXPR _ReturnType |
1669 | __make_move_if_noexcept_iterator(_Tp* __i) |
1670 | { return _ReturnType(__i); } |
1671 | |
1672 | #if __cplusplus > 201703L && __cpp_lib_concepts |
1673 | // [iterators.common] Common iterators |
1674 | |
1675 | namespace __detail |
1676 | { |
1677 | template<typename _It> |
1678 | concept __common_iter_has_arrow = indirectly_readable<const _It> |
1679 | && (requires(const _It& __it) { __it.operator->(); } |
1680 | || is_reference_v<iter_reference_t<_It>> |
1681 | || constructible_from<iter_value_t<_It>, iter_reference_t<_It>>); |
1682 | |
1683 | template<typename _It> |
1684 | concept __common_iter_use_postfix_proxy |
1685 | = (!requires (_It& __i) { { *__i++ } -> __can_reference; }) |
1686 | && constructible_from<iter_value_t<_It>, iter_reference_t<_It>> |
1687 | && move_constructible<iter_value_t<_It>>; |
1688 | } // namespace __detail |
1689 | |
1690 | /// An iterator/sentinel adaptor for representing a non-common range. |
1691 | template<input_or_output_iterator _It, sentinel_for<_It> _Sent> |
1692 | requires (!same_as<_It, _Sent>) && copyable<_It> |
1693 | class common_iterator |
1694 | { |
1695 | template<typename _Tp, typename _Up> |
1696 | static constexpr bool |
1697 | _S_noexcept1() |
1698 | { |
1699 | if constexpr (is_trivially_default_constructible_v<_Tp>) |
1700 | return is_nothrow_assignable_v<_Tp, _Up>; |
1701 | else |
1702 | return is_nothrow_constructible_v<_Tp, _Up>; |
1703 | } |
1704 | |
1705 | template<typename _It2, typename _Sent2> |
1706 | static constexpr bool |
1707 | _S_noexcept() |
1708 | { return _S_noexcept1<_It, _It2>() && _S_noexcept1<_Sent, _Sent2>(); } |
1709 | |
1710 | class __arrow_proxy |
1711 | { |
1712 | iter_value_t<_It> _M_keep; |
1713 | |
1714 | __arrow_proxy(iter_reference_t<_It>&& __x) |
1715 | : _M_keep(std::move(__x)) { } |
1716 | |
1717 | friend class common_iterator; |
1718 | |
1719 | public: |
1720 | const iter_value_t<_It>* |
1721 | operator->() const |
1722 | { return std::__addressof(_M_keep); } |
1723 | }; |
1724 | |
1725 | class __postfix_proxy |
1726 | { |
1727 | iter_value_t<_It> _M_keep; |
1728 | |
1729 | __postfix_proxy(iter_reference_t<_It>&& __x) |
1730 | : _M_keep(std::forward<iter_reference_t<_It>>(__x)) { } |
1731 | |
1732 | friend class common_iterator; |
1733 | |
1734 | public: |
1735 | const iter_value_t<_It>& |
1736 | operator*() const |
1737 | { return _M_keep; } |
1738 | }; |
1739 | |
1740 | public: |
1741 | constexpr |
1742 | common_iterator() |
1743 | noexcept(is_nothrow_default_constructible_v<_It>) |
1744 | : _M_it(), _M_index(0) |
1745 | { } |
1746 | |
1747 | constexpr |
1748 | common_iterator(_It __i) |
1749 | noexcept(is_nothrow_move_constructible_v<_It>) |
1750 | : _M_it(std::move(__i)), _M_index(0) |
1751 | { } |
1752 | |
1753 | constexpr |
1754 | common_iterator(_Sent __s) |
1755 | noexcept(is_nothrow_move_constructible_v<_Sent>) |
1756 | : _M_sent(std::move(__s)), _M_index(1) |
1757 | { } |
1758 | |
1759 | template<typename _It2, typename _Sent2> |
1760 | requires convertible_to<const _It2&, _It> |
1761 | && convertible_to<const _Sent2&, _Sent> |
1762 | constexpr |
1763 | common_iterator(const common_iterator<_It2, _Sent2>& __x) |
1764 | noexcept(_S_noexcept<const _It2&, const _Sent2&>()) |
1765 | : _M_valueless(), _M_index(__x._M_index) |
1766 | { |
1767 | if (_M_index == 0) |
1768 | { |
1769 | if constexpr (is_trivially_default_constructible_v<_It>) |
1770 | _M_it = std::move(__x._M_it); |
1771 | else |
1772 | ::new((void*)std::__addressof(_M_it)) _It(__x._M_it); |
1773 | } |
1774 | else if (_M_index == 1) |
1775 | { |
1776 | if constexpr (is_trivially_default_constructible_v<_Sent>) |
1777 | _M_sent = std::move(__x._M_sent); |
1778 | else |
1779 | ::new((void*)std::__addressof(_M_sent)) _Sent(__x._M_sent); |
1780 | } |
1781 | } |
1782 | |
1783 | constexpr |
1784 | common_iterator(const common_iterator& __x) |
1785 | noexcept(_S_noexcept<const _It&, const _Sent&>()) |
1786 | : _M_valueless(), _M_index(__x._M_index) |
1787 | { |
1788 | if (_M_index == 0) |
1789 | { |
1790 | if constexpr (is_trivially_default_constructible_v<_It>) |
1791 | _M_it = std::move(__x._M_it); |
1792 | else |
1793 | ::new((void*)std::__addressof(_M_it)) _It(__x._M_it); |
1794 | } |
1795 | else if (_M_index == 1) |
1796 | { |
1797 | if constexpr (is_trivially_default_constructible_v<_Sent>) |
1798 | _M_sent = std::move(__x._M_sent); |
1799 | else |
1800 | ::new((void*)std::__addressof(_M_sent)) _Sent(__x._M_sent); |
1801 | } |
1802 | } |
1803 | |
1804 | common_iterator& |
1805 | operator=(const common_iterator& __x) |
1806 | noexcept(is_nothrow_copy_assignable_v<_It> |
1807 | && is_nothrow_copy_assignable_v<_Sent> |
1808 | && is_nothrow_copy_constructible_v<_It> |
1809 | && is_nothrow_copy_constructible_v<_Sent>) |
1810 | { |
1811 | return this->operator=<_It, _Sent>(__x); |
1812 | } |
1813 | |
1814 | template<typename _It2, typename _Sent2> |
1815 | requires convertible_to<const _It2&, _It> |
1816 | && convertible_to<const _Sent2&, _Sent> |
1817 | && assignable_from<_It&, const _It2&> |
1818 | && assignable_from<_Sent&, const _Sent2&> |
1819 | common_iterator& |
1820 | operator=(const common_iterator<_It2, _Sent2>& __x) |
1821 | noexcept(is_nothrow_constructible_v<_It, const _It2&> |
1822 | && is_nothrow_constructible_v<_Sent, const _Sent2&> |
1823 | && is_nothrow_assignable_v<_It, const _It2&> |
1824 | && is_nothrow_assignable_v<_Sent, const _Sent2&>) |
1825 | { |
1826 | switch(_M_index << 2 | __x._M_index) |
1827 | { |
1828 | case 0b0000: |
1829 | _M_it = __x._M_it; |
1830 | break; |
1831 | case 0b0101: |
1832 | _M_sent = __x._M_sent; |
1833 | break; |
1834 | case 0b0001: |
1835 | _M_it.~_It(); |
1836 | _M_index = -1; |
1837 | [[fallthrough]]; |
1838 | case 0b1001: |
1839 | ::new((void*)std::__addressof(_M_sent)) _Sent(__x._M_sent); |
1840 | _M_index = 1; |
1841 | break; |
1842 | case 0b0100: |
1843 | _M_sent.~_Sent(); |
1844 | _M_index = -1; |
1845 | [[fallthrough]]; |
1846 | case 0b1000: |
1847 | ::new((void*)std::__addressof(_M_it)) _It(__x._M_it); |
1848 | _M_index = 0; |
1849 | break; |
1850 | default: |
1851 | __glibcxx_assert(__x._M_has_value()); |
1852 | __builtin_unreachable(); |
1853 | } |
1854 | return *this; |
1855 | } |
1856 | |
1857 | ~common_iterator() |
1858 | { |
1859 | switch (_M_index) |
1860 | { |
1861 | case 0: |
1862 | _M_it.~_It(); |
1863 | break; |
1864 | case 1: |
1865 | _M_sent.~_Sent(); |
1866 | break; |
1867 | } |
1868 | } |
1869 | |
1870 | decltype(auto) |
1871 | operator*() |
1872 | { |
1873 | __glibcxx_assert(_M_index == 0); |
1874 | return *_M_it; |
1875 | } |
1876 | |
1877 | decltype(auto) |
1878 | operator*() const requires __detail::__dereferenceable<const _It> |
1879 | { |
1880 | __glibcxx_assert(_M_index == 0); |
1881 | return *_M_it; |
1882 | } |
1883 | |
1884 | decltype(auto) |
1885 | operator->() const requires __detail::__common_iter_has_arrow<_It> |
1886 | { |
1887 | __glibcxx_assert(_M_index == 0); |
1888 | if constexpr (is_pointer_v<_It> || requires { _M_it.operator->(); }) |
1889 | return _M_it; |
1890 | else if constexpr (is_reference_v<iter_reference_t<_It>>) |
1891 | { |
1892 | auto&& __tmp = *_M_it; |
1893 | return std::__addressof(__tmp); |
1894 | } |
1895 | else |
1896 | return __arrow_proxy{*_M_it}; |
1897 | } |
1898 | |
1899 | common_iterator& |
1900 | operator++() |
1901 | { |
1902 | __glibcxx_assert(_M_index == 0); |
1903 | ++_M_it; |
1904 | return *this; |
1905 | } |
1906 | |
1907 | decltype(auto) |
1908 | operator++(int) |
1909 | { |
1910 | __glibcxx_assert(_M_index == 0); |
1911 | if constexpr (forward_iterator<_It>) |
1912 | { |
1913 | common_iterator __tmp = *this; |
1914 | ++*this; |
1915 | return __tmp; |
1916 | } |
1917 | else if constexpr (!__detail::__common_iter_use_postfix_proxy<_It>) |
1918 | return _M_it++; |
1919 | else |
1920 | { |
1921 | __postfix_proxy __p(**this); |
1922 | ++*this; |
1923 | return __p; |
1924 | } |
1925 | } |
1926 | |
1927 | template<typename _It2, sentinel_for<_It> _Sent2> |
1928 | requires sentinel_for<_Sent, _It2> |
1929 | friend bool |
1930 | operator==(const common_iterator& __x, |
1931 | const common_iterator<_It2, _Sent2>& __y) |
1932 | { |
1933 | switch(__x._M_index << 2 | __y._M_index) |
1934 | { |
1935 | case 0b0000: |
1936 | case 0b0101: |
1937 | return true; |
1938 | case 0b0001: |
1939 | return __x._M_it == __y._M_sent; |
1940 | case 0b0100: |
1941 | return __x._M_sent == __y._M_it; |
1942 | default: |
1943 | __glibcxx_assert(__x._M_has_value()); |
1944 | __glibcxx_assert(__y._M_has_value()); |
1945 | __builtin_unreachable(); |
1946 | } |
1947 | } |
1948 | |
1949 | template<typename _It2, sentinel_for<_It> _Sent2> |
1950 | requires sentinel_for<_Sent, _It2> && equality_comparable_with<_It, _It2> |
1951 | friend bool |
1952 | operator==(const common_iterator& __x, |
1953 | const common_iterator<_It2, _Sent2>& __y) |
1954 | { |
1955 | switch(__x._M_index << 2 | __y._M_index) |
1956 | { |
1957 | case 0b0101: |
1958 | return true; |
1959 | case 0b0000: |
1960 | return __x._M_it == __y._M_it; |
1961 | case 0b0001: |
1962 | return __x._M_it == __y._M_sent; |
1963 | case 0b0100: |
1964 | return __x._M_sent == __y._M_it; |
1965 | default: |
1966 | __glibcxx_assert(__x._M_has_value()); |
1967 | __glibcxx_assert(__y._M_has_value()); |
1968 | __builtin_unreachable(); |
1969 | } |
1970 | } |
1971 | |
1972 | template<sized_sentinel_for<_It> _It2, sized_sentinel_for<_It> _Sent2> |
1973 | requires sized_sentinel_for<_Sent, _It2> |
1974 | friend iter_difference_t<_It2> |
1975 | operator-(const common_iterator& __x, |
1976 | const common_iterator<_It2, _Sent2>& __y) |
1977 | { |
1978 | switch(__x._M_index << 2 | __y._M_index) |
1979 | { |
1980 | case 0b0101: |
1981 | return 0; |
1982 | case 0b0000: |
1983 | return __x._M_it - __y._M_it; |
1984 | case 0b0001: |
1985 | return __x._M_it - __y._M_sent; |
1986 | case 0b0100: |
1987 | return __x._M_sent - __y._M_it; |
1988 | default: |
1989 | __glibcxx_assert(__x._M_has_value()); |
1990 | __glibcxx_assert(__y._M_has_value()); |
1991 | __builtin_unreachable(); |
1992 | } |
1993 | } |
1994 | |
1995 | friend iter_rvalue_reference_t<_It> |
1996 | iter_move(const common_iterator& __i) |
1997 | noexcept(noexcept(ranges::iter_move(std::declval<const _It&>()))) |
1998 | requires input_iterator<_It> |
1999 | { |
2000 | __glibcxx_assert(__i._M_index == 0); |
2001 | return ranges::iter_move(__i._M_it); |
2002 | } |
2003 | |
2004 | template<indirectly_swappable<_It> _It2, typename _Sent2> |
2005 | friend void |
2006 | iter_swap(const common_iterator& __x, |
2007 | const common_iterator<_It2, _Sent2>& __y) |
2008 | noexcept(noexcept(ranges::iter_swap(std::declval<const _It&>(), |
2009 | std::declval<const _It2&>()))) |
2010 | { |
2011 | __glibcxx_assert(__x._M_index == 0); |
2012 | __glibcxx_assert(__y._M_index == 0); |
2013 | return ranges::iter_swap(__x._M_it, __y._M_it); |
2014 | } |
2015 | |
2016 | private: |
2017 | template<input_or_output_iterator _It2, sentinel_for<_It2> _Sent2> |
2018 | friend class common_iterator; |
2019 | |
2020 | bool _M_has_value() const noexcept { return _M_index < 2; } |
2021 | |
2022 | union |
2023 | { |
2024 | _It _M_it; |
2025 | _Sent _M_sent; |
2026 | unsigned char _M_valueless; |
2027 | }; |
2028 | unsigned char _M_index; // 0==_M_it, 1==_M_sent, 2==valueless |
2029 | }; |
2030 | |
2031 | template<typename _It, typename _Sent> |
2032 | struct incrementable_traits<common_iterator<_It, _Sent>> |
2033 | { |
2034 | using difference_type = iter_difference_t<_It>; |
2035 | }; |
2036 | |
2037 | template<input_iterator _It, typename _Sent> |
2038 | struct iterator_traits<common_iterator<_It, _Sent>> |
2039 | { |
2040 | private: |
2041 | template<typename _Iter> |
2042 | struct __ptr |
2043 | { |
2044 | using type = void; |
2045 | }; |
2046 | |
2047 | template<typename _Iter> |
2048 | requires __detail::__common_iter_has_arrow<_Iter> |
2049 | struct __ptr<_Iter> |
2050 | { |
2051 | using _CIter = common_iterator<_Iter, _Sent>; |
2052 | using type = decltype(std::declval<const _CIter&>().operator->()); |
2053 | }; |
2054 | |
2055 | static auto |
2056 | _S_iter_cat() |
2057 | { |
2058 | using _Traits = iterator_traits<_It>; |
2059 | if constexpr (requires { requires derived_from<typename _Traits::iterator_category, |
2060 | forward_iterator_tag>; }) |
2061 | return forward_iterator_tag{}; |
2062 | else |
2063 | return input_iterator_tag{}; |
2064 | } |
2065 | |
2066 | public: |
2067 | using iterator_concept = conditional_t<forward_iterator<_It>, |
2068 | forward_iterator_tag, input_iterator_tag>; |
2069 | using iterator_category = decltype(_S_iter_cat()); |
2070 | using value_type = iter_value_t<_It>; |
2071 | using difference_type = iter_difference_t<_It>; |
2072 | using pointer = typename __ptr<_It>::type; |
2073 | using reference = iter_reference_t<_It>; |
2074 | }; |
2075 | |
2076 | // [iterators.counted] Counted iterators |
2077 | |
2078 | namespace __detail |
2079 | { |
2080 | template<typename _It> |
2081 | struct __counted_iter_value_type |
2082 | { }; |
2083 | |
2084 | template<indirectly_readable _It> |
2085 | struct __counted_iter_value_type<_It> |
2086 | { using value_type = iter_value_t<_It>; }; |
2087 | |
2088 | template<typename _It> |
2089 | struct __counted_iter_concept |
2090 | { }; |
2091 | |
2092 | template<typename _It> |
2093 | requires requires { typename _It::iterator_concept; } |
2094 | struct __counted_iter_concept<_It> |
2095 | { using iterator_concept = typename _It::iterator_concept; }; |
2096 | |
2097 | template<typename _It> |
2098 | struct __counted_iter_cat |
2099 | { }; |
2100 | |
2101 | template<typename _It> |
2102 | requires requires { typename _It::iterator_category; } |
2103 | struct __counted_iter_cat<_It> |
2104 | { using iterator_category = typename _It::iterator_category; }; |
2105 | } |
2106 | |
2107 | /// An iterator adaptor that keeps track of the distance to the end. |
2108 | template<input_or_output_iterator _It> |
2109 | class counted_iterator |
2110 | : public __detail::__counted_iter_value_type<_It>, |
2111 | public __detail::__counted_iter_concept<_It>, |
2112 | public __detail::__counted_iter_cat<_It> |
2113 | { |
2114 | public: |
2115 | using iterator_type = _It; |
2116 | // value_type defined in __counted_iter_value_type |
2117 | using difference_type = iter_difference_t<_It>; |
2118 | // iterator_concept defined in __counted_iter_concept |
2119 | // iterator_category defined in __counted_iter_cat |
2120 | |
2121 | constexpr counted_iterator() = default; |
2122 | |
2123 | constexpr |
2124 | counted_iterator(_It __i, iter_difference_t<_It> __n) |
2125 | : _M_current(std::move(__i)), _M_length(__n) |
2126 | { __glibcxx_assert(__n >= 0); } |
2127 | |
2128 | template<typename _It2> |
2129 | requires convertible_to<const _It2&, _It> |
2130 | constexpr |
2131 | counted_iterator(const counted_iterator<_It2>& __x) |
2132 | : _M_current(__x._M_current), _M_length(__x._M_length) |
2133 | { } |
2134 | |
2135 | template<typename _It2> |
2136 | requires assignable_from<_It&, const _It2&> |
2137 | constexpr counted_iterator& |
2138 | operator=(const counted_iterator<_It2>& __x) |
2139 | { |
2140 | _M_current = __x._M_current; |
2141 | _M_length = __x._M_length; |
2142 | return *this; |
2143 | } |
2144 | |
2145 | constexpr const _It& |
2146 | base() const & noexcept |
2147 | { return _M_current; } |
2148 | |
2149 | constexpr _It |
2150 | base() && |
2151 | noexcept(is_nothrow_move_constructible_v<_It>) |
2152 | { return std::move(_M_current); } |
2153 | |
2154 | constexpr iter_difference_t<_It> |
2155 | count() const noexcept { return _M_length; } |
2156 | |
2157 | constexpr decltype(auto) |
2158 | operator*() |
2159 | noexcept(noexcept(*_M_current)) |
2160 | { |
2161 | __glibcxx_assert( _M_length > 0 ); |
2162 | return *_M_current; |
2163 | } |
2164 | |
2165 | constexpr decltype(auto) |
2166 | operator*() const |
2167 | noexcept(noexcept(*_M_current)) |
2168 | requires __detail::__dereferenceable<const _It> |
2169 | { |
2170 | __glibcxx_assert( _M_length > 0 ); |
2171 | return *_M_current; |
2172 | } |
2173 | |
2174 | constexpr auto |
2175 | operator->() const noexcept |
2176 | requires contiguous_iterator<_It> |
2177 | { return std::to_address(_M_current); } |
2178 | |
2179 | constexpr counted_iterator& |
2180 | operator++() |
2181 | { |
2182 | __glibcxx_assert(_M_length > 0); |
2183 | ++_M_current; |
2184 | --_M_length; |
2185 | return *this; |
2186 | } |
2187 | |
2188 | decltype(auto) |
2189 | operator++(int) |
2190 | { |
2191 | __glibcxx_assert(_M_length > 0); |
2192 | --_M_length; |
2193 | __try |
2194 | { |
2195 | return _M_current++; |
2196 | } __catch(...) { |
2197 | ++_M_length; |
2198 | __throw_exception_again; |
2199 | } |
2200 | |
2201 | } |
2202 | |
2203 | constexpr counted_iterator |
2204 | operator++(int) requires forward_iterator<_It> |
2205 | { |
2206 | auto __tmp = *this; |
2207 | ++*this; |
2208 | return __tmp; |
2209 | } |
2210 | |
2211 | constexpr counted_iterator& |
2212 | operator--() requires bidirectional_iterator<_It> |
2213 | { |
2214 | --_M_current; |
2215 | ++_M_length; |
2216 | return *this; |
2217 | } |
2218 | |
2219 | constexpr counted_iterator |
2220 | operator--(int) requires bidirectional_iterator<_It> |
2221 | { |
2222 | auto __tmp = *this; |
2223 | --*this; |
2224 | return __tmp; |
2225 | } |
2226 | |
2227 | constexpr counted_iterator |
2228 | operator+(iter_difference_t<_It> __n) const |
2229 | requires random_access_iterator<_It> |
2230 | { return counted_iterator(_M_current + __n, _M_length - __n); } |
2231 | |
2232 | friend constexpr counted_iterator |
2233 | operator+(iter_difference_t<_It> __n, const counted_iterator& __x) |
2234 | requires random_access_iterator<_It> |
2235 | { return __x + __n; } |
2236 | |
2237 | constexpr counted_iterator& |
2238 | operator+=(iter_difference_t<_It> __n) |
2239 | requires random_access_iterator<_It> |
2240 | { |
2241 | __glibcxx_assert(__n <= _M_length); |
2242 | _M_current += __n; |
2243 | _M_length -= __n; |
2244 | return *this; |
2245 | } |
2246 | |
2247 | constexpr counted_iterator |
2248 | operator-(iter_difference_t<_It> __n) const |
2249 | requires random_access_iterator<_It> |
2250 | { return counted_iterator(_M_current - __n, _M_length + __n); } |
2251 | |
2252 | template<common_with<_It> _It2> |
2253 | friend constexpr iter_difference_t<_It2> |
2254 | operator-(const counted_iterator& __x, |
2255 | const counted_iterator<_It2>& __y) |
2256 | { return __y._M_length - __x._M_length; } |
2257 | |
2258 | friend constexpr iter_difference_t<_It> |
2259 | operator-(const counted_iterator& __x, default_sentinel_t) |
2260 | { return -__x._M_length; } |
2261 | |
2262 | friend constexpr iter_difference_t<_It> |
2263 | operator-(default_sentinel_t, const counted_iterator& __y) |
2264 | { return __y._M_length; } |
2265 | |
2266 | constexpr counted_iterator& |
2267 | operator-=(iter_difference_t<_It> __n) |
2268 | requires random_access_iterator<_It> |
2269 | { |
2270 | __glibcxx_assert(-__n <= _M_length); |
2271 | _M_current -= __n; |
2272 | _M_length += __n; |
2273 | return *this; |
2274 | } |
2275 | |
2276 | constexpr decltype(auto) |
2277 | operator[](iter_difference_t<_It> __n) const |
2278 | noexcept(noexcept(_M_current[__n])) |
2279 | requires random_access_iterator<_It> |
2280 | { |
2281 | __glibcxx_assert(__n < _M_length); |
2282 | return _M_current[__n]; |
2283 | } |
2284 | |
2285 | template<common_with<_It> _It2> |
2286 | friend constexpr bool |
2287 | operator==(const counted_iterator& __x, |
2288 | const counted_iterator<_It2>& __y) |
2289 | { return __x._M_length == __y._M_length; } |
2290 | |
2291 | friend constexpr bool |
2292 | operator==(const counted_iterator& __x, default_sentinel_t) |
2293 | { return __x._M_length == 0; } |
2294 | |
2295 | template<common_with<_It> _It2> |
2296 | friend constexpr strong_ordering |
2297 | operator<=>(const counted_iterator& __x, |
2298 | const counted_iterator<_It2>& __y) |
2299 | { return __y._M_length <=> __x._M_length; } |
2300 | |
2301 | friend constexpr iter_rvalue_reference_t<_It> |
2302 | iter_move(const counted_iterator& __i) |
2303 | noexcept(noexcept(ranges::iter_move(__i._M_current))) |
2304 | requires input_iterator<_It> |
2305 | { |
2306 | __glibcxx_assert( __i._M_length > 0 ); |
2307 | return ranges::iter_move(__i._M_current); |
2308 | } |
2309 | |
2310 | template<indirectly_swappable<_It> _It2> |
2311 | friend constexpr void |
2312 | iter_swap(const counted_iterator& __x, |
2313 | const counted_iterator<_It2>& __y) |
2314 | noexcept(noexcept(ranges::iter_swap(__x._M_current, __y._M_current))) |
2315 | { |
2316 | __glibcxx_assert( __x._M_length > 0 && __y._M_length > 0 ); |
2317 | ranges::iter_swap(__x._M_current, __y._M_current); |
2318 | } |
2319 | |
2320 | private: |
2321 | template<input_or_output_iterator _It2> friend class counted_iterator; |
2322 | |
2323 | _It _M_current = _It(); |
2324 | iter_difference_t<_It> _M_length = 0; |
2325 | }; |
2326 | |
2327 | template<input_iterator _It> |
2328 | requires same_as<__detail::__iter_traits<_It>, iterator_traits<_It>> |
2329 | struct iterator_traits<counted_iterator<_It>> : iterator_traits<_It> |
2330 | { |
2331 | using pointer = conditional_t<contiguous_iterator<_It>, |
2332 | add_pointer_t<iter_reference_t<_It>>, |
2333 | void>; |
2334 | }; |
2335 | #endif // C++20 |
2336 | |
2337 | /// @} group iterators |
2338 | |
2339 | template<typename _Iterator> |
2340 | auto |
2341 | __niter_base(move_iterator<_Iterator> __it) |
2342 | -> decltype(make_move_iterator(__niter_base(__it.base()))) |
2343 | { return make_move_iterator(__niter_base(__it.base())); } |
2344 | |
2345 | template<typename _Iterator> |
2346 | struct __is_move_iterator<move_iterator<_Iterator> > |
2347 | { |
2348 | enum { __value = 1 }; |
2349 | typedef __true_type __type; |
2350 | }; |
2351 | |
2352 | template<typename _Iterator> |
2353 | auto |
2354 | __miter_base(move_iterator<_Iterator> __it) |
2355 | -> decltype(__miter_base(__it.base())) |
2356 | { return __miter_base(__it.base()); } |
2357 | |
2358 | #define _GLIBCXX_MAKE_MOVE_ITERATOR(_Iter) std::make_move_iterator(_Iter) |
2359 | #define _GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATOR(_Iter) \ |
2360 | std::__make_move_if_noexcept_iterator(_Iter) |
2361 | #else |
2362 | #define _GLIBCXX_MAKE_MOVE_ITERATOR(_Iter) (_Iter) |
2363 | #define _GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATOR(_Iter) (_Iter) |
2364 | #endif // C++11 |
2365 | |
2366 | #if __cpp_deduction_guides >= 201606 |
2367 | // These helper traits are used for deduction guides |
2368 | // of associative containers. |
2369 | template<typename _InputIterator> |
2370 | using __iter_key_t = remove_const_t< |
2371 | typename iterator_traits<_InputIterator>::value_type::first_type>; |
2372 | |
2373 | template<typename _InputIterator> |
2374 | using __iter_val_t = |
2375 | typename iterator_traits<_InputIterator>::value_type::second_type; |
2376 | |
2377 | template<typename _T1, typename _T2> |
2378 | struct pair; |
2379 | |
2380 | template<typename _InputIterator> |
2381 | using __iter_to_alloc_t = |
2382 | pair<add_const_t<__iter_key_t<_InputIterator>>, |
2383 | __iter_val_t<_InputIterator>>; |
2384 | #endif // __cpp_deduction_guides |
2385 | |
2386 | _GLIBCXX_END_NAMESPACE_VERSION |
2387 | } // namespace |
2388 | |
2389 | #ifdef _GLIBCXX_DEBUG |
2390 | # include <debug/stl_iterator.h> |
2391 | #endif |
2392 | |
2393 | #endif |
2394 | |