Package com.rpl.rama

Class Expr

java.lang.Object
com.rpl.rama.Expr

public class Expr extends Object
Specifies an expression to be used in an argument position in dataflow code. The expression executes like a nested each call that emits one result to out.

Example: Block.each(Ops.PLUS, new Expr(Ops.TIMES, 2, 3), 1).out("*res") computes 2 * 3 + 1 and stores result in "*res".
See Also: