protocol ExpressibleByFloatLiteral
Inheritance | View Protocol Hierarchy → |
---|---|
Associated Types | |
Import | import Swift |
Initializers
Creates an instance initialized to the specified floating-point value.
Do not call this initializer directly. Instead, initialize a variable or constant using a floating-point literal. For example:
let x = 21.5
In this example, the assignment to the x
constant calls this
floating-point literal initializer behind the scenes.
value
: The value to create.
Declaration
init(floatLiteral value: Self.FloatLiteralType)
A type that can be initialized with a floating-point literal.
The standard library floating-point types---
Float
,Double
, andFloat80
where available---all conform to theExpressibleByFloatLiteral
protocol. You can initialize a variable or constant of any of these types by assigning a floating-point literal.Conforming to ExpressibleByFloatLiteral
To add
ExpressibleByFloatLiteral
conformance to your custom type, implement the required initializer.