all

fun all(vararg expressions: Expression): Expression

Returns true if all the inputs are true, false otherwise. The inputs are evaluated in order, and evaluation is short-circuiting: once an input expression evaluates to false, the result is false and no further input expressions are evaluated.

fun all(block: Expression.ExpressionBuilder.() -> Unit): Expression

DSL function for "all".