Files
swift-mirror/stdlib/core/Bool.swift
Dave Abrahams 6d1095f44e Protocol names end in "Type," "ible," or "able"
Mechanically add "Type" to the end of any protocol names that don't end
in "Type," "ible," or "able."  Also, drop "Type" from the end of any
associated type names, except for those of the *LiteralConvertible
protocols.

There are obvious improvements to make in some of these names, which can
be handled with separate commits.

Fixes <rdar://problem/17165920> Protocols `Integer` etc should get
uglier names.

Swift SVN r19883
2014-07-12 17:29:57 +00:00

123 lines
3.2 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 public
init(_ v : Builtin.Int1) { value = v }
}
extension Bool : _BuiltinBooleanLiteralConvertible, BooleanLiteralConvertible {
@transparent
public static func _convertFromBuiltinBooleanLiteral(value: Builtin.Int1)
-> Bool {
return Bool(value)
}
@transparent
public static func convertFromBooleanLiteral(value: Bool) -> Bool {
return value
}
}
extension Bool : LogicValueType {
@transparent public func _getBuiltinLogicValue() -> Builtin.Int1 {
return value
}
@transparent public func getLogicValue() -> Bool { return self }
// Bool can be constructed from LogicValueType
public init(_ v : LogicValueType) {
self = v.getLogicValue()
}
}
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.
@prefix @transparent public
func ~(a: Bool) -> Bool {
return a ^ true
}
// Unary logical complement.
@prefix @transparent 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)
@assignment @transparent public
func &= (inout lhs: Bool, rhs: Bool) {
lhs = lhs & rhs
}
// Compound assignment (with bitwise or)
@assignment @transparent public
func |= (inout lhs: Bool, rhs: Bool) {
lhs = lhs | rhs
}
// Compound assignment (with bitwise xor)
@assignment @transparent public
func ^= (inout lhs: Bool, rhs: Bool) {
lhs = lhs ^ rhs
}