Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Struct template regex_id_filter_predicate

boost::xpressive::regex_id_filter_predicate

Synopsis

// In header: <boost/xpressive/match_results.hpp>

template<typename BidiIter> 
struct regex_id_filter_predicate {
  // types
  typedef match_results< BidiIter > argument_type;
  typedef bool                      result_type;  

  // construct/copy/destruct
  regex_id_filter_predicate(regex_id_type);

  // public member functions
  bool operator()(match_results< BidiIter > const &) const;
};

Description

regex_id_filter_predicate public construct/copy/destruct

  1. regex_id_filter_predicate(regex_id_type regex_id);

regex_id_filter_predicate public member functions

  1. bool operator()(match_results< BidiIter > const & res) const;

PrevUpHomeNext