# atomicFetchFmax

`import { atomicFetchFmax } from "destack:sync";`

Atomic fetch-and-max (float).

Atomically stores the maximum of the current value and `value`.
Returns the previous value before the operation.

```ds title="atomicFetchFmax"
export declare function atomicFetchFmax<T: Float>(ptr: *T, value: T, order: MemoryOrdering, scope: AtomicScope, memoryScope: MemoryScope, regions: MemoryRegionSet, isVolatile: boolean, isMakeAvailable: boolean, isMakeVisible: boolean): T
```

[language/library/src/sync/atomic.ds:475:485](https://github.com/destack-sh/destack/blob/main/language/library/src/sync/atomic.ds#L475-L485)
