gt method

Mask gt(
  1. num reference
)

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

Implementation

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