mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Conforming to BooleanLiteralConvertible now requires init(booleanLiteral: Bool) rather than static func convertFromBooleanLiteral(value: Bool) -> Self This posed a problem for NSNumber's conformance to BooleanLiteralConvertible. A class needs a required initializer to satisfy an initializer requirement, but one cannot add a required initializer via an extension. To that end, we hack the Clang importer to import NSNumber's initWithBool with the name init(booleanLiteral:) and add back the expected init(bool:) initializer in the overlay. These tricks make NSNumber even harder to subclass, but we don't really care: it's nearly impossible to do well anyway, and is generally a Bad Idea. Part of rdar://problem/18154091. Swift SVN r21961
122 lines
3.0 KiB
Swift
122 lines
3.0 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Bool Datatype and Supporting Operators
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Bool is the standard way to reason about truth values.
|
|
public struct Bool {
|
|
var value: Builtin.Int1
|
|
|
|
/// Default-initialize Boolean value to `false`.
|
|
@transparent
|
|
public init() { value = Builtin.trunc_Word_Int1(0.value) }
|
|
|
|
@transparent
|
|
init(_ v : Builtin.Int1) { value = v }
|
|
}
|
|
|
|
extension Bool : _BuiltinBooleanLiteralConvertible, BooleanLiteralConvertible {
|
|
@transparent
|
|
public init(_builtinBooleanLiteral value: Builtin.Int1) {
|
|
self.value = value
|
|
}
|
|
|
|
@transparent
|
|
public init(booleanLiteral value: Bool) {
|
|
self = value
|
|
}
|
|
}
|
|
|
|
extension Bool : BooleanType {
|
|
@transparent public func _getBuiltinLogicValue() -> Builtin.Int1 {
|
|
return value
|
|
}
|
|
|
|
@transparent public var boolValue: Bool { return self }
|
|
|
|
// Bool can be constructed from BooleanType
|
|
public init<T: BooleanType>(_ v: T) {
|
|
self = v.boolValue
|
|
}
|
|
}
|
|
|
|
extension Bool : Printable {
|
|
public var description: String {
|
|
return self ? "true" : "false"
|
|
}
|
|
}
|
|
|
|
// This is a magic entrypoint known to the compiler.
|
|
@transparent func _getBool(v: Builtin.Int1) -> Bool { return Bool(v) }
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Standard Operators
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Unary bitwise complement.
|
|
@transparent prefix
|
|
public func ~(a: Bool) -> Bool {
|
|
return a ^ true
|
|
}
|
|
|
|
// Unary logical complement.
|
|
@transparent prefix
|
|
public func !(a: Bool) -> Bool {
|
|
return ~a
|
|
}
|
|
|
|
@transparent
|
|
public func ==(lhs: Bool, rhs: Bool) -> Bool {
|
|
return Bool(Builtin.cmp_eq_Int1(lhs.value, rhs.value))
|
|
}
|
|
|
|
@transparent
|
|
extension Bool : Equatable, Hashable {
|
|
public var hashValue: Int {
|
|
return self ? 1 : 0
|
|
}
|
|
}
|
|
|
|
// Bitwise 'and'.
|
|
@transparent public func & (lhs: Bool, rhs: Bool) -> Bool {
|
|
return Bool(Builtin.and_Int1(lhs.value, rhs.value))
|
|
}
|
|
|
|
// Bitwise 'xor'.
|
|
@transparent public func ^ (lhs: Bool, rhs: Bool) -> Bool {
|
|
return Bool(Builtin.xor_Int1(lhs.value, rhs.value))
|
|
}
|
|
|
|
// Bitwise 'or'.
|
|
@transparent public func | (lhs: Bool, rhs: Bool) -> Bool {
|
|
return Bool(Builtin.or_Int1(lhs.value, rhs.value))
|
|
}
|
|
|
|
// Compound assignment (with bitwise and)
|
|
@transparent
|
|
public func &= (inout lhs: Bool, rhs: Bool) {
|
|
lhs = lhs & rhs
|
|
}
|
|
|
|
// Compound assignment (with bitwise or)
|
|
@transparent
|
|
public func |= (inout lhs: Bool, rhs: Bool) {
|
|
lhs = lhs | rhs
|
|
}
|
|
|
|
// Compound assignment (with bitwise xor)
|
|
@transparent
|
|
public func ^= (inout lhs: Bool, rhs: Bool) {
|
|
lhs = lhs ^ rhs
|
|
}
|
|
|