noneIndexed method
Returns true if no elements satisfy an indexed predicate test reactively.
Implementation
Coral<bool> noneIndexed(bool Function(int index, E element) test) => coral
.map((source) => !source.indexed.any((pair) => test(pair.$1, pair.$2)));