MPICommandExpr

MPICommandExpr

 

 typedef struct MPICommandExpr {
    MPICommandOperator	oper;
    MPICommandAddress	address;
	union {
	    MPICommandConstant	value;	/* [*'address'] 'oper' ['value'] */
	    MPICommandAddress	ref;	/* [*'address'] 'oper' [*'ref']  */
	} by;
} MPICommandExpr;
Description

CommandExpr is a structure that represents an expression for an MPICommand object.

  The expression is evaluated as either:
 

 

*address oper value
 

 

*address oper *ref
  depending on the command type.
See Also MPICommand | MPICommandParams | MPICommandType