geq method

Mask geq(
  1. num reference
)

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

Implementation

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