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