any

fun any(vararg expressions: Expression): Expression

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

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

DSL function for "any".