operator <= method

  1. @override
bool operator <=(
  1. Object other
)
override

Relational less than or equal to operator.

Implementation

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