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