nor

fun nor(vararg conditions: Condition): Condition

Creates a NOR condition combining multiple conditions. None of the specified conditions must be true for the combined condition to be true.

Return

A new NOR condition.

Parameters

conditions

The conditions to combine with NOR logic.


fun nor(conditions: List<Condition>): Condition

Creates a NOR condition combining a list of conditions. None of the specified conditions must be true for the combined condition to be true.

Return

A new NOR condition.

Parameters

conditions

The list of conditions to combine with NOR logic.