Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template shift_right_assign

boost::proto::shift_right_assign — A metafunction for generating right-shift-assign expression types, a grammar element for matching right-shift-assign expressions, and a PrimitiveTransform that dispatches to the proto::pass_through<> transform.

Synopsis

// In header: <boost/proto/traits.hpp>

template<typename T, typename U> 
struct shift_right_assign :  proto::transform<  {
  // types
  typedef proto::expr< proto::tag::shift_right_assign, proto::list2<        ;         
  typedef proto::basic_expr< proto::tag::shift_right_assign, proto::list2<  ;

  // member classes/structs/unions
  template<typename Expr, typename State, typename Data> 
  struct impl :  proto::pass_through<
  {
  };
};

Description


PrevUpHomeNext