gt method

  1. @override
Logic gt(
  1. 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);
  }
}