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
template<typename T, typename U>
struct shift_right_assign : proto::transform< shift_right_assign<T, U> > {
typedef proto::expr< proto::tag::shift_right_assign, proto::list2< T, U > > type;
typedef proto::basic_expr< proto::tag::shift_right_assign, proto::list2< T, U > > proto_grammar;
template<typename Expr, typename State, typename Data>
struct impl : proto::pass_through<shift_right_assign>::template impl<Expr, State, Data>
{
};
};