public static CanonicalIntegerBoolean AddUnsigned(TIntT first, TIntT second, out TIntT result)
        {
            var result_ = unchecked (first + second);

            result = result_;
            return(CanonicalIntegerBooleanModule.LessThanOrEqual(first.ToUnsignedUnchecked(), result_.ToUnsignedUnchecked()));
        }
 public static CanonicalIntegerBoolean SubtractUnsigned(TIntT first, TIntT second, out TIntT result)
 {
     result = unchecked (first - second);
     return(CanonicalIntegerBooleanModule.GreaterThanOrEqual(first.ToUnsignedUnchecked(), second.ToUnsignedUnchecked()));
 }