std::tr1::regex_iterator.3cxx

Langue: en

Version: 350656 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

Sommaire

NAME

std::tr1::regex_iterator -

SYNOPSIS


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


bool operator!= (const regex_iterator &__rhs)

const value_type & operator* ()

regex_iterator & operator++ ()

regex_iterator operator++ (int)

const value_type * operator-> ()

regex_iterator & operator= (const regex_iterator &__rhs)

bool operator== (const regex_iterator &__rhs)

regex_iterator (_Bi_iter __a, _Bi_iter __b, const regex_type &__re, regex_constants::match_flag_type __m=regex_constants::match_default)

regex_iterator (const regex_iterator &__rhs)

regex_iterator ()

Detailed Description

template<typename _Bi_iter, typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> class std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >

An iterator adaptor that will provide repeated calls of regex_search over a range until no more matches remain.

Definition at line 2429 of file tr1_impl/regex.

Constructor & Destructor Documentation

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator ()

Provides a singular iterator, useful for indicating one-past-the-end of a range. Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator (_Bi_iter __a, _Bi_iter __b, const regex_type & __re, regex_constants::match_flag_type __m = regex_constants::match_default)Constructs a regex_iterator...

Parameters:

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.

Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator (const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & __rhs)Copy constructs a regex_iterator.

Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

Member Function Documentation

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> bool std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator!= (const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & __rhs)Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> const value_type& std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator* ()Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> regex_iterator std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ (int)Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> regex_iterator& std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ ()Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> const value_type* std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator-> ()Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> regex_iterator& std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator= (const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & __rhs)Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> bool std::tr1::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator== (const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & __rhs)Todo

Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.

Author

Generated automatically by Doxygen for libstdc++ from the source code.