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 throw_

boost::xpressive::op::throw_

Synopsis

template<typename Except> 
struct throw_ {
  // types
  typedef void result_type;

  // public member functions
  void operator()() const;
  template<typename A0> void operator()(A0 const &) const;
  template<typename A0, typename A1> 
    void operator()(A0 const &, A1 const &) const;
  template<typename A0, typename A1, typename A2> 
    void operator()(A0 const &, A1 const &, A2 const &) const;
};

Description

throw_ public member functions

  1. void operator()() const;
  2. template<typename A0> void operator()(A0 const & a0) const;
  3. template<typename A0, typename A1> 
      void operator()(A0 const & a0, A1 const & a1) const;
  4. template<typename A0, typename A1, typename A2> 
      void operator()(A0 const & a0, A1 const & a1, A2 const & a2) const;

PrevUpHomeNext