...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::xpressive::op::as
// In header: <boost/xpressive/regex_actions.hpp> template<typename T> struct as { // types typedef T result_type; // public member functions template<typename Value> T operator()(Value const &) const; T operator()(csub_match const &) const; T operator()(wcsub_match const &) const; template<typename BidiIter> T operator()(sub_match< BidiIter > const &) const; // private member functions template<typename RandIter> T impl(sub_match< RandIter > const &, mpl::true_) const; template<typename BidiIter> T impl(sub_match< BidiIter > const &, mpl::false_) const; };
as
public member functionstemplate<typename Value> T operator()(Value const & val) const;
T operator()(csub_match const & val) const;
T operator()(wcsub_match const & val) const;
template<typename BidiIter> T operator()(sub_match< BidiIter > const & val) const;