We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NBKUnsignedInteger already requires recoverable unsigned subtraction (#34):
func subtractingReportingOverflow(_ other: Self) -> PVO<Self> mutating func subtractReportingOverflow(_ other: Self) -> Bool @_disfavoredOverload func subtractingReportingOverflow(_ other: Digit) -> PVO<Self> @_disfavoredOverload mutating func subtractReportingOverflow(_ other: Digit) -> Bool
These have well-defined 2's complement semantics. How about conveniences?
static func &- (lhs: Self, rhs: Self) -> Self static func &-=(lhs: inout Self, rhs: Self) @_disfavoredOverload static func &- (lhs: Self, rhs: Digit) -> Self @_disfavoredOverload static func &-=(lhs: inout Self, rhs: Digit)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NBKUnsignedInteger already requires recoverable unsigned subtraction (#34):
These have well-defined 2's complement semantics. How about conveniences?
The text was updated successfully, but these errors were encountered: