Function std::intrinsics::atomic_umax[][src]

pub unsafe extern "rust-intrinsic" fn atomic_umax<T>(
    dst: *mut T,
    src: T
) -> T where
    T: Copy
🔬 This is a nightly-only experimental API. (core_intrinsics)
Expand description

使用无符号比较将当前值设为最大值。

通过将 Ordering::SeqCst 传递为 order,可以通过 fetch_max 方法在 atomic 无符号整数类型上使用此内部函数的稳定版本。 例如,AtomicU32::fetch_max