isSmallerThan method

ComposableFilter isSmallerThan(
  1. T value
)

Create a filter to check if the column is small than a value

Implementation

ComposableFilter isSmallerThan(T value) =>
    $composableFilter(column.isSmallerThanValue(value));