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