tmp/tmpl6b0_ssb/{from.md → to.md}
RENAMED
|
@@ -1,21 +0,0 @@
|
|
| 1 |
-
#### `multimap` operations <a id="multimap.ops">[[multimap.ops]]</a>
|
| 2 |
-
|
| 3 |
-
``` cpp
|
| 4 |
-
iterator find(const key_type &x);
|
| 5 |
-
const_iterator find(const key_type& x) const;
|
| 6 |
-
|
| 7 |
-
iterator lower_bound(const key_type& x);
|
| 8 |
-
const_iterator lower_bound(const key_type& x) const;
|
| 9 |
-
|
| 10 |
-
pair<iterator, iterator>
|
| 11 |
-
equal_range(const key_type& x);
|
| 12 |
-
pair<const_iterator, const_iterator>
|
| 13 |
-
equal_range(const key_type& x) const;
|
| 14 |
-
```
|
| 15 |
-
|
| 16 |
-
The `find`, `lower_bound`, `upper_bound`, and `equal_range` member
|
| 17 |
-
functions each have two versions, one const and one non-const. In each
|
| 18 |
-
case the behavior of the two versions is identical except that the const
|
| 19 |
-
version returns a `const_iterator` and the non-const version an
|
| 20 |
-
`iterator` ([[associative.reqmts]]).
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|