gt method

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

Greater-than.

Implementation

@override
Logic gt(dynamic other) =>
    mux(_verifyComparable(other), ~lte(other), Const(0));