maskFrom method

Mask maskFrom(
  1. bool test(
    1. E
    )
)

Get a Mask by mapping test to the column records.

Implementation

Mask maskFrom(bool Function(E) test) => map(test).toList().cast<bool>();