From Jason Turner

[re.tokiter.cnstr]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpm2eorxiu/{from.md → to.md} +6 -10
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
- regex_constants::match_flag_type m =
14
- regex_constants::match_default);
15
 
16
  regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
17
  const regex_type& re,
18
- const std::vector<int>& submatches,
19
- regex_constants::match_flag_type m =
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
- regex_constants::match_flag_type m =
26
- regex_constants::match_default);
27
 
28
- template <std::size_t N>
29
  regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
30
  const regex_type& re,
31
  const int (&submatches)[N],
32
- regex_constants::match_flag_type m =
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