operator < method

  1. @override
bool operator <(
  1. dynamic other
)
override

Relational less than operator.

Implementation

@override
bool operator <(other) {
  if (other is Int64) {
    return toInt64() < other;
  }
  return _i < _toInt(other);
}