ifThenElse function

Expr ifThenElse(
  1. Expr condition,
  2. Expr thenCedarExpr,
  3. Expr elseCedarExpr
)

Implementation

Expr ifThenElse(
  Expr condition,
  Expr thenCedarExpr,
  Expr elseCedarExpr,
) =>
    ExprIfThenElse(
      cond: condition,
      then: thenCedarExpr,
      otherwise: elseCedarExpr,
    );