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