std::regex_iterator man page on RedHat

Man page or keyword search:  
man Server   29550 pages
apropos Keyword Search (all sections)
Output format
RedHat logo
[printable version]

std::regex_iterator<; _std::regex_iterator<R_Bi_iter,>_Ch_type, _Rx_traits >(3)

NAME
       std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > -

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
       regex_iterator ()
       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)
       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)

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::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 2204 of file regex.h.

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::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.

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

   template<typename _Bi_iter , typename _Ch_type  = typename
       iterator_traits<_Bi_iter>::value_type, typename _Rx_traits  =
       regex_traits<_Ch_type>> std::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.

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

   template<typename _Bi_iter , typename _Ch_type  = typename
       iterator_traits<_Bi_iter>::value_type, typename _Rx_traits  =
       regex_traits<_Ch_type>> std::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.

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

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::regex_iterator< _Bi_iter, _Ch_type,
       _Rx_traits >::operator!= (const regex_iterator< _Bi_iter, _Ch_type,
       _Rx_traits > &__rhs)
       Todo
	   Implement this function.

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

   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::regex_iterator<
       _Bi_iter, _Ch_type, _Rx_traits >::operator* ()
       Todo
	   Implement this function.

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

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

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

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

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

   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::regex_iterator<
       _Bi_iter, _Ch_type, _Rx_traits >::operator-> ()
       Todo
	   Implement this function.

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

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

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

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

	   Needs documentation! See
	   http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html

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

libstdc++	      std::regex_iterator<2_Bi_iter, _Ch_type, _Rx_traits >(3)
[top]

List of man pages available for RedHat

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net