Replaces the value in the atomic integer by the minimum of the current value and a given value with acquire-release semantics.
impl AtomicUsize {
fn min_acquire_release(&self, val: usize) -> usize
}| Name | Description |
|---|---|
| val | The value that will be compared to the integer. |
Returns the old value.