noID

inline fun <ID : Any> Field<ID, *>.noID(reductionType: ReductionType = ExcludingSelf, crossinline predicate: Predicate<ID>): Boolean

Returns true if no ID in the field satisfies the given predicate.

The local ID is included in the check if reductionType is it.unibo.collektive.stdlib.util.IncludingSelf (the default is ExcludingSelf).

Return

true if no applicable ID satisfies the predicate, false otherwise.

Parameters

reductionType

controls whether the local ID is included in the check.

predicate

the condition to test for each ID.