gte method

  1. @override
Logic gte(
  1. dynamic other
)
override

Greater-than.

Implementation

@override
Logic gte(dynamic other) {
  _verifyCompatible(other);
  if (signed) {
    return mux(this[-1], super.lte(other), super.gte(other));
  } else {
    return super.gte(other);
  }
}