tmp/tmp_fy8kjqr/{from.md → to.md}
RENAMED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
#### Iterators <a id="forward.list.iter">[[forward.list.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 |
*Effects:* `cbefore_begin()` is equivalent to
|
| 10 |
`const_cast<forward_list const&>(*this).before_begin()`.
|
| 11 |
|
|
|
|
| 1 |
#### Iterators <a id="forward.list.iter">[[forward.list.iter]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
constexpr iterator before_begin() noexcept;
|
| 5 |
+
constexpr const_iterator before_begin() const noexcept;
|
| 6 |
+
constexpr const_iterator cbefore_begin() const noexcept;
|
| 7 |
```
|
| 8 |
|
| 9 |
*Effects:* `cbefore_begin()` is equivalent to
|
| 10 |
`const_cast<forward_list const&>(*this).before_begin()`.
|
| 11 |
|