• An expression that is the boolean 'and' of the given expressions.

    Use this kind of expression as the if-expression in an ifThenElse, as a when-expression in a cases expression or anywhere an expression that resolves to a boolean is required.

    Parameters

    • Rest ...expressions: Expression<boolean>[]

      The expressions to be 'and'ed together. This can be any number of expressions. Each one should result in a boolean.

    Returns Expression<boolean>

    An expression that is the boolean 'and' of all given expressions. Results in a boolean.