all method

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

等同every

Implementation

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