Protocol

ExpressibleByFloatLiteral

A type that can be initialized with a floating-point literal. ある浮動小数点リテラルを使って初期化できる型。

Declaration 宣言

protocol ExpressibleByFloatLiteral

Overview 概要

The standard library floating-point types—Float, Double, and Float80 where available—all conform to the ExpressibleByFloatLiteral protocol. You can initialize a variable or constant of any of these types by assigning a floating-point literal. 標準ライブラリ浮動小数点型—FloatDouble、そして利用可能なところではFloat80—は、すべてExpressibleByFloatLiteralプロトコルに準拠します。あなたは、これらの型どれかの変数または定数を、浮動小数点リテラルを割り当てることによって初期化できます。


// Type inferred as 'Double'
let threshold = 6.0


// An array of 'Double'
let measurements = [2.2, 4.1, 3.65, 4.2, 9.1]

Conforming to ExpressibleByFloatLiteral ExpressibleByFloatLiteralに準拠する

To add ExpressibleByFloatLiteral conformance to your custom type, implement the required initializer. ExpressibleByFloatLiteral準拠をあなたのあつらえの型に加えるには、必須イニシャライザを実装してください。

Topics 話題

Associated Types さまざまな関連型

Initializers イニシャライザ

See Also 参照

Value Literals 値リテラル