lt method

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

Less-than.

Implementation

@override
Logic lt(dynamic other) {
  final otherSign = (other as FloatingPoint).sign;
  return mux(
      _verifyComparable(other),
      mux(sign, mux(otherSign, super.gt(other), Const(1)),
          mux(otherSign, Const(0), super.lt(other))),
      Const(0));
}