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 at

boost::xpressive::op::at

Synopsis

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


struct at {
  // member classes/structs/unions
  template<typename Sig> 
  struct result {
  };
  template<typename This, typename Cont, typename Idx> 
  struct result<This(Cont &, Idx)> {
  };
  template<typename This, typename Cont, typename Idx> 
  struct result<This(Cont, Idx)> :
    public boost::xpressive::op::at::result< This(Cont const &, Idx)>
  {
  };

  // public member functions
  template<typename Cont, typename Idx> 
    Cont::reference operator()(Cont &, Idx idx ) const;
  template<typename Cont, typename Idx> 
    Cont::const_reference operator()(Cont const &, Idx) const;
};

Description

at public member functions

  1. template<typename Cont, typename Idx> 
      Cont::reference 
      operator()(Cont & c, Idx idx  BOOST_PROTO_DISABLE_IF_IS_CONST) const;
  2. template<typename Cont, typename Idx> 
      Cont::const_reference operator()(Cont const & c, Idx idx) const;

PrevUpHomeNext