Public methods
Method new()
constructor
Usage
BinOp$new(lhs, binop, rhs)
Arguments
lhsthe left hand side expression
binopthe binary operator to be used
rhsthe right hand side expression
Method getLhs()
get the lhs expression
Usage
BinOp$getLhs()
Method getRhs()
get the rhs expression
Usage
BinOp$getRhs()
Method getOp()
get the operator
Usage
BinOp$getOp()
Method setOp()
set the operator
Usage
BinOp$setOp(binop)
Arguments
opbinary operator to be set
Method setLhs()
set the lhs expression
Usage
BinOp$setLhs(e)
Arguments
eexpression to set
Method setRhs()
set the rhs expression
Usage
BinOp$setRhs(e)
Arguments
eexpression to set
Method c_str()
return the MiniZinc representation
Usage
BinOp$c_str()
Method getDeleteFlag()
delete flag for internal use
Usage
BinOp$getDeleteFlag()
Method delete()
delete the assignment item
Usage
BinOp$delete()
Method clone()
The objects of this class are cloneable with this method.
Usage
BinOp$clone(deep = FALSE)
Arguments
deepWhether to make a deep clone.