Relational less than or equal to operator.
@override bool operator <=(Object other) { if (other is Int64) { return toInt64() <= other; } return _i <= _toInt(other); }