tmp/tmp80a7hrj6/{from.md → to.md}
RENAMED
|
@@ -9,23 +9,23 @@ member `matched`.
|
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
difference_type length() const;
|
| 12 |
```
|
| 13 |
|
| 14 |
-
*Returns:* `
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
operator string_type() const;
|
| 18 |
```
|
| 19 |
|
| 20 |
-
*Returns:* `matched ?
|
| 21 |
|
| 22 |
``` cpp
|
| 23 |
string_type str() const;
|
| 24 |
```
|
| 25 |
|
| 26 |
-
*Returns:* `matched ?
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
int compare(const sub_match& s) const;
|
| 30 |
```
|
| 31 |
|
|
|
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
difference_type length() const;
|
| 12 |
```
|
| 13 |
|
| 14 |
+
*Returns:* `matched ? distance(first, second) : 0`.
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
operator string_type() const;
|
| 18 |
```
|
| 19 |
|
| 20 |
+
*Returns:* `matched ? string_type(first, second) : string_type()`.
|
| 21 |
|
| 22 |
``` cpp
|
| 23 |
string_type str() const;
|
| 24 |
```
|
| 25 |
|
| 26 |
+
*Returns:* `matched ? string_type(first, second) : string_type()`.
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
int compare(const sub_match& s) const;
|
| 30 |
```
|
| 31 |
|