all method

bool all(
  1. bool test(
    1. T t
    )
)

Checks whether every element of this Iterable satisfies test.

Equivalent to Iterable.every.

Implementation

bool all(bool Function(T t) test) => every(test);