/// Creates an instance initialized to `false`. /// /// Do not call this initializer directly. Instead, use the Boolean literal /// `false` to create a new `Bool` instance. @_transparent publicinit() { let zero: Int8 = 0 self._value = Builtin.trunc_Int8_Int1(zero._value) }
@usableFromInline @_transparent internalinit(_ v: Builtin.Int1) { self._value = v } /// Creates an instance equal to the given Boolean value. /// /// - Parameter value: The Boolean value to copy. @inlinable publicinit(_ value: Bool) { self = value } ...