libstdc++
|
#include <regex.h>
Public Types | |
typedef std::ptrdiff_t | difference_type |
typedef std::forward_iterator_tag | iterator_category |
typedef const value_type * | pointer |
typedef const value_type & | reference |
typedef basic_regex< _Ch_type, _Rx_traits > | regex_type |
typedef match_results< _Bi_iter > | value_type |
Public Member Functions | |
regex_iterator ()=default | |
regex_iterator (_Bi_iter __a, _Bi_iter __b, const regex_type &__re, regex_constants::match_flag_type __m=regex_constants::match_default) | |
regex_iterator (_Bi_iter, _Bi_iter, const regex_type &&, regex_constants::match_flag_type=regex_constants::match_default)=delete | |
regex_iterator (const regex_iterator &)=default | |
bool | operator!= (const regex_iterator &__rhs) const noexcept |
const value_type & | operator* () const noexcept |
regex_iterator & | operator++ () |
regex_iterator | operator++ (int) |
const value_type * | operator-> () const noexcept |
regex_iterator & | operator= (const regex_iterator &)=default |
bool | operator== (const regex_iterator &) const noexcept |
An iterator adaptor that will provide repeated calls of regex_search over a range until no more matches remain.
typedef std::ptrdiff_t std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::difference_type |
typedef std::forward_iterator_tag std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::iterator_category |
typedef const value_type* std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::pointer |
typedef const value_type& std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::reference |
typedef basic_regex<_Ch_type, _Rx_traits> std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_type |
typedef match_results<_Bi_iter> std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::value_type |
|
default |
Provides a singular iterator, useful for indicating one-past-the-end of a range.
Referenced by std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator().
|
inline |
Constructs a regex_iterator...
__a | [IN] The start of a text range to search. |
__b | [IN] One-past-the-end of the text range to search. |
__re | [IN] The regular expression to match. |
__m | [IN] Policy flags for match rules. |
Definition at line 2688 of file regex.h.
References std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator(), and std::regex_search().
|
default |
Copy constructs a regex_iterator.
|
inlinenoexcept |
|
inlinenoexcept |
regex_iterator & std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ | ( | ) |
Increments a regex_iterator.
|
inline |
|
inlinenoexcept |
|
default |
Copy assigns one regex_iterator to another.
|
noexcept |
Tests the equivalence of two regex iterators.