|
3623 | 3623 | const regex_type& re, |
3624 | 3624 | regex_constants::match_flag_type m = |
3625 | 3625 | regex_constants::match_default); |
| 3626 | + regex_iterator(BidirectionalIterator a, BidirectionalIterator b, |
| 3627 | + const regex_type&& re, |
| 3628 | + regex_constants::match_flag_type m = |
| 3629 | + regex_constants::match_default) = delete; |
3626 | 3630 | regex_iterator(const regex_iterator&); |
3627 | 3631 | regex_iterator& operator=(const regex_iterator&); |
3628 | 3632 | bool operator==(const regex_iterator&) const; |
|
3902 | 3906 | const int (&submatches)[N], |
3903 | 3907 | regex_constants::match_flag_type m = |
3904 | 3908 | regex_constants::match_default); |
| 3909 | + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, |
| 3910 | + const regex_type&& re, |
| 3911 | + int submatch = 0, |
| 3912 | + regex_constants::match_flag_type m = |
| 3913 | + regex_constants::match_default) = delete; |
| 3914 | + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, |
| 3915 | + const regex_type&& re, |
| 3916 | + const std::vector<int>& submatches, |
| 3917 | + regex_constants::match_flag_type m = |
| 3918 | + regex_constants::match_default) = delete; |
| 3919 | + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, |
| 3920 | + const regex_type&& re, |
| 3921 | + initializer_list<int> submatches, |
| 3922 | + regex_constants::match_flag_type m = |
| 3923 | + regex_constants::match_default) = delete; |
| 3924 | + template <std::size_t N> |
| 3925 | + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, |
| 3926 | + const regex_type&& re, |
| 3927 | + const int (&submatches)[N], |
| 3928 | + regex_constants::match_flag_type m = |
| 3929 | + regex_constants::match_default) = delete; |
3905 | 3930 | regex_token_iterator(const regex_token_iterator&); |
3906 | 3931 | regex_token_iterator& operator=(const regex_token_iterator&); |
3907 | 3932 | bool operator==(const regex_token_iterator&) const; |
|
0 commit comments