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 top

boost::xpressive::op::top

Synopsis

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


struct top {
  // member classes/structs/unions
  template<typename Sig> 
  struct result {
  };
  template<typename This, typename Sequence> 
  struct result<This(Sequence)> {
    // types
    typedef mpl::if_c< is_const< sequence_type >::value, typename sequence_type::value_type const &, typename sequence_type::value_type & >::type type;

    // public member functions
    typedef UNREF(Sequence) ;
  };
};

Description


PrevUpHomeNext