---
title: "-=(_:_:)"
framework: swift
role: symbol
role_heading: Operator
path: "swift/float80/-=(_:_:)"
---

# -=(_:_:)

Subtracts the second value from the first and stores the difference in the left-hand-side variable, rounding to a representable value.

## Declaration

```swift
static func -= (lhs: inout Float80, rhs: Float80)
```

## Parameters

- `lhs`: A numeric value.
- `rhs`: The value to subtract from lhs.
