none

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

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

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

Return

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

Parameters

reductionType

controls whether the local entry is included in the check.

predicate

the condition to test for each field entry.