Метод every
bool every(Проверяет, удовлетворяет ли каждое значение этого итерируемого объекта заданному test.
Проверяет каждое значение в порядке итерации и возвращает false, если хоть одно из них заставляет test вернуть false, в противном случае возвращает true.
Исходный код
bool every(bool test(E element)) {
int length = this.length;
for (int i = 0; i < length; i++) {
if (!test(elementAt(i))) return false;
if (length != this.length) {
throw new ConcurrentModificationError(this);
}
}
return true;
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-collection/ListQueue/every.html