boolean function

Expr boolean(
  1. bool value
)

Implementation

Expr boolean(bool value) {
  return ExprValue(Value.bool(value));
}