lt method

Mask lt(
  1. num reference
)

Requires the column records type to be a subtype of num (i.e. non-null!)

Implementation

Mask lt(num reference) =>
    cast<num>().map((element) => element < reference).toList().cast<bool>();