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