[−][src]Function core::intrinsics::mul_with_overflow
pub unsafe extern "rust-intrinsic" fn mul_with_overflow<T>(
x: T,
y: T
) -> (T, bool)
🔬 This is a nightly-only experimental API. (core_intrinsics
#0)
intrinsics are unlikely to ever be stabilized, instead they should be used through stabilized interfaces in the rest of the standard library
Performs checked integer multiplication
The stabilized versions of this intrinsic are available on the integer
primitives via the overflowing_mul
method. For example,
std::u32::overflowing_mul