---
title: "init(_:)"
framework: swift
role: symbol
role_heading: Initializer
path: "swift/float80/init(_:)-5yold"
---

# init(_:)

Creates a new instance from the given value, rounded to the closest possible representation.

## Declaration

```swift
init<Source>(_ value: Source) where Source : BinaryFloatingPoint
```

## Parameters

- `value`: A floating-point value to be converted.

## Discussion

Discussion If two representable values are equally close, the result is the value with more trailing zeros in its significand bit pattern.
