@Override protected <U extends IValue> Result<U> greaterThanOrEqualTuple(TupleResult that) { // note reversed args: we need that >= this return bool((that.comparisonInts(this) >= 0), ctx); }
@Override protected <U extends IValue> Result<U> lessThanTuple(TupleResult that) { // note reversed args: we need that < this return bool((that.comparisonInts(this) < 0), ctx); }