all method

bool all(
  1. bool test(
    1. E element
    )
)

Alias for Iterable.every.

Implementation

bool all(bool Function(E element) test) => every(test);