tmp/tmp_abvekbb/{from.md → to.md}
RENAMED
|
@@ -1,16 +0,0 @@
|
|
| 1 |
-
#### Iterators <a id="forwardlist.iter">[[forwardlist.iter]]</a>
|
| 2 |
-
|
| 3 |
-
``` cpp
|
| 4 |
-
iterator before_begin() noexcept;
|
| 5 |
-
const_iterator before_begin() const noexcept;
|
| 6 |
-
const_iterator cbefore_begin() const noexcept;
|
| 7 |
-
```
|
| 8 |
-
|
| 9 |
-
*Returns:* A non-dereferenceable iterator that, when incremented, is
|
| 10 |
-
equal to the iterator returned by `begin()`.
|
| 11 |
-
|
| 12 |
-
*Effects:* `cbefore_begin()` is equivalent to
|
| 13 |
-
`const_cast<forward_list const&>(*this).before_begin()`.
|
| 14 |
-
|
| 15 |
-
*Remarks:* `before_begin() == end()` shall equal `false`.
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|