thenElse method

Expr thenElse(
  1. Object a,
  2. Object b
)

If this is true then return then, otherwise return other.

Implementation

Expr thenElse(Object a, Object b) => ifThenElse(this, $(a), $(b));