tmp/tmpm2eorxiu/{from.md → to.md}
RENAMED
|
@@ -8,31 +8,27 @@ regex_token_iterator();
|
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 11 |
const regex_type& re,
|
| 12 |
int submatch = 0,
|
| 13 |
-
|
| 14 |
-
regex_constants::match_default);
|
| 15 |
|
| 16 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 17 |
const regex_type& re,
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
regex_constants::match_default);
|
| 21 |
|
| 22 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 23 |
const regex_type& re,
|
| 24 |
initializer_list<int> submatches,
|
| 25 |
-
|
| 26 |
-
regex_constants::match_default);
|
| 27 |
|
| 28 |
-
template <
|
| 29 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 30 |
const regex_type& re,
|
| 31 |
const int (&submatches)[N],
|
| 32 |
-
|
| 33 |
-
regex_constants::match_default);
|
| 34 |
```
|
| 35 |
|
| 36 |
*Requires:* Each of the initialization values of `submatches` shall be
|
| 37 |
`>= -1`.
|
| 38 |
|
|
|
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 11 |
const regex_type& re,
|
| 12 |
int submatch = 0,
|
| 13 |
+
regex_constants::match_flag_type m = regex_constants::match_default);
|
|
|
|
| 14 |
|
| 15 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 16 |
const regex_type& re,
|
| 17 |
+
const vector<int>& submatches,
|
| 18 |
+
regex_constants::match_flag_type m = regex_constants::match_default);
|
|
|
|
| 19 |
|
| 20 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 21 |
const regex_type& re,
|
| 22 |
initializer_list<int> submatches,
|
| 23 |
+
regex_constants::match_flag_type m = regex_constants::match_default);
|
|
|
|
| 24 |
|
| 25 |
+
template <size_t N>
|
| 26 |
regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
| 27 |
const regex_type& re,
|
| 28 |
const int (&submatches)[N],
|
| 29 |
+
regex_constants::match_flag_type m = regex_constants::match_default);
|
|
|
|
| 30 |
```
|
| 31 |
|
| 32 |
*Requires:* Each of the initialization values of `submatches` shall be
|
| 33 |
`>= -1`.
|
| 34 |
|