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

# *=(_:_:)

Multiplies two values and stores the result in the left-hand-side variable, rounding to a representable value.

## Declaration

```swift
static func *= (lhs: inout Float, rhs: Float)
```

## Parameters

- `lhs`: The first value to multiply.
- `rhs`: The second value to multiply.
