tmp/tmpp4_nxev6/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
###
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class BidirectionalIterator, class Allocator>
|
| 5 |
bool operator==(const match_results<BidirectionalIterator, Allocator>& m1,
|
| 6 |
const match_results<BidirectionalIterator, Allocator>& m2);
|
|
@@ -17,15 +17,7 @@ returns `true` only if:
|
|
| 17 |
- `m1.size() == m2.size() && equal(m1.begin(), m1.end(), m2.begin())`,
|
| 18 |
and
|
| 19 |
- `m1.suffix() == m2.suffix()`.
|
| 20 |
|
| 21 |
[*Note 1*: The algorithm `equal` is defined in
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
``` cpp
|
| 25 |
-
template <class BidirectionalIterator, class Allocator>
|
| 26 |
-
bool operator!=(const match_results<BidirectionalIterator, Allocator>& m1,
|
| 27 |
-
const match_results<BidirectionalIterator, Allocator>& m2);
|
| 28 |
-
```
|
| 29 |
-
|
| 30 |
-
*Returns:* `!(m1 == m2)`.
|
| 31 |
|
|
|
|
| 1 |
+
### Non-member functions <a id="re.results.nonmember">[[re.results.nonmember]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class BidirectionalIterator, class Allocator>
|
| 5 |
bool operator==(const match_results<BidirectionalIterator, Allocator>& m1,
|
| 6 |
const match_results<BidirectionalIterator, Allocator>& m2);
|
|
|
|
| 17 |
- `m1.size() == m2.size() && equal(m1.begin(), m1.end(), m2.begin())`,
|
| 18 |
and
|
| 19 |
- `m1.suffix() == m2.suffix()`.
|
| 20 |
|
| 21 |
[*Note 1*: The algorithm `equal` is defined in
|
| 22 |
+
[[algorithms]]. — *end note*]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|