lte method
- dynamic other
override
Less-than-or-equal-to.
Implementation
@override
Logic lte(dynamic other) {
_verifyCompatible(other);
if (signed) {
return mux(this[-1], super.gte(other), super.lte(other));
} else {
return super.lte(other);
}
}