or

fun or(vararg conditions: Condition): Condition

Creates an OR condition combining multiple conditions. At least one of the specified conditions must be true for the combined condition to be true.

Return

A new OR condition.

Parameters

conditions

The conditions to combine with OR logic.


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

Creates an OR condition combining a list of conditions. At least one of the specified conditions must be true for the combined condition to be true.

Return

A new OR condition.

Parameters

conditions

The list of conditions to combine with OR logic.