associatedtype IntegerLiteralType
A type that represents an integer literal.
ある整数リテラルを表す型。
Availability
Technology
protocol ExpressibleByIntegerLiteral
The standard library integer and floating-point types, such as Int
and Double
, conform to the Expressible
protocol. You can initialize a variable or constant of any of these types by assigning an integer literal.
標準ライブラリの整数および浮動小数点型、例えばInt
およびDouble
は、Expressible
プロトコルに準拠します。あなたは、それらの型のどれかの変数や定数を初期化することが、整数リテラルを割り当てることによって可能です。
To add Expressible
conformance to your custom type, implement the required initializer.
Expressible
準拠をあなたのあつらえの型に加えるには、必須イニシャライザを実装してください。
associatedtype IntegerLiteralType
init(integerLiteral : Self.IntegerLiteralType)
protocol ExpressibleByFloatLiteral
protocol ExpressibleByBooleanLiteral
true
and false
.
ブールリテラルのtrue
とfalse
を使って初期化できる型。
protocol ExpressibleByNilLiteral
nil
.
nilリテラル、nil
を使って初期化できる型。