类型别名
Boolean
BooleanLiteralType
otherwise-unconstrained 布尔文字的默认类型。
声明
typealias BooleanLiteralType = Bool
详述
当您使用布尔文字 true
或 false
之一创建常量或变量时,生成的类型由 BooleanLiteralType
别名确定。例如:
let isBool = true
print("isBool is a '\(type(of: isBool))'")
// Prints "isBool is a 'Bool'"
BooleanLiteralType
别名的类型必须符合ExpressibleByBooleanLiteral
协议。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Bool !(_:)用法及代码示例
- Swift Bool用法及代码示例
- Swift Bool random()用法及代码示例
- Swift Bool ||(_:_:)用法及代码示例
- Swift Bool init(booleanLiteral:)用法及代码示例
- Swift Bool random(using:)用法及代码示例
- Swift Bool &&(_:_:)用法及代码示例
- Swift Bool toggle()用法及代码示例
- Swift BinaryInteger quotientAndRemainder(dividingBy:)用法及代码示例
- Swift BinaryInteger trailingZeroBitCount用法及代码示例
- Swift BinaryInteger init(clamping:)用法及代码示例
- Swift BinaryInteger <<=(_:_:)用法及代码示例
- Swift BinaryInteger !=(_:_:)用法及代码示例
- Swift BinaryInteger /(_:_:)用法及代码示例
- Swift BinaryInteger init(truncatingIfNeeded:)用法及代码示例
- Swift BinaryInteger ==(_:_:)用法及代码示例
- Swift BinaryFloatingPoint binade用法及代码示例
- Swift BidirectionalCollection subscript(_:)用法及代码示例
- Swift BidirectionalCollection last(where:)用法及代码示例
- Swift BidirectionalCollection lastIndex(where:)用法及代码示例
- Swift BinaryInteger init(_:)用法及代码示例
- Swift BinaryInteger %=(_:_:)用法及代码示例
- Swift BinaryFloatingPoint random(in:using:)用法及代码示例
- Swift BinaryInteger &=(_:_:)用法及代码示例
- Swift BidirectionalCollection lastIndex(of:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 BooleanLiteralType。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。