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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
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 {
  // 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