-
Create a fixed-point number from a Double
Declaration
Swift
init(doubleValue d: Double)
-
Create a fixed-point number from a Float
Declaration
Swift
init(floatValue f: Float)
-
Create a fixed-point number from an Int
Declaration
Swift
init(intValue i: Int)
-
Truncated integer representation of the fixed-point value
Declaration
Swift
var intValue: Int { get set }
-
Double precision representation of the fixed-point value
Declaration
Swift
var doubleValue: Double { get set }
-
Smallest possible number greater than zero expressed as a fixed-point number.
Declaration
Swift
static var 𝜀: Int32