We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c155a commit f819683Copy full SHA for f819683
stdlib/public/core/Bit.swift
@@ -94,7 +94,9 @@ public func < (lhs: Bit, rhs: Bit) -> Bool {
94
}
95
96
extension Bit : IntegerArithmeticType {
97
- static func _withOverflow(intResult: Int, overflow: Bool) -> (Bit, overflow: Bool) {
+ static func _withOverflow(
98
+ intResult: Int, overflow: Bool
99
+ ) -> (Bit, overflow: Bool) {
100
if let bit = Bit(rawValue: intResult) {
101
return (bit, overflow: overflow)
102
} else {
0 commit comments