Type Property
型プロパティ
zero
The zero value.
ゼロ値。
Required. Default implementation provided.
必須。 省略時の実装の提供。
Technology
- Swift Standard Library
Swift標準ライブラリ
Declaration
宣言
static var zero: Self { get }
Discussion
解説
Zero is the identity element for addition. For any value, x + .zero == x
and .zero + x == x
.
ゼロは加算に対する単位元です。あらゆる値に対して、x + .zero == x
かつ.zero + x == x
。
Default Implementations
省略時実装
AdditiveArithmetic Implementations
加法算術の実装
static var zero: Self
The zero value.
ゼロ値。
Available when Self
conforms to ExpressibleByIntegerLiteral
.
Self
がExpressibleByIntegerLiteral
に準拠する場合に利用可能です。