32 lines
857 B
Markdown
32 lines
857 B
Markdown
[move.iter.elem]
|
||
|
||
# 24 Iterators library [[iterators]](./#iterators)
|
||
|
||
## 24.5 Iterator adaptors [[predef.iterators]](predef.iterators#move.iter.elem)
|
||
|
||
### 24.5.4 Move iterators and sentinels [[move.iterators]](move.iterators#move.iter.elem)
|
||
|
||
#### 24.5.4.6 Element access [move.iter.elem]
|
||
|
||
[ð](#lib:operator*,move_iterator)
|
||
|
||
`constexpr reference operator*() const;
|
||
`
|
||
|
||
[1](#1)
|
||
|
||
[#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/iterators.tex#L4983)
|
||
|
||
*Effects*: Equivalent to: return ranges::iter_move(current);
|
||
|
||
[ð](#lib:operator%5b%5d,move_iterator)
|
||
|
||
`constexpr reference operator[](difference_type n) const;
|
||
`
|
||
|
||
[2](#2)
|
||
|
||
[#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/iterators.tex#L4994)
|
||
|
||
*Effects*: Equivalent to: return ranges::iter_move(current + n);
|