Function std::intrinsics::float_to_int_unchecked[][src]

pub unsafe extern "rust-intrinsic" fn float_to_int_unchecked<Float, Int>(
    value: Float
) -> Int where
    Int: Copy,
    Float: Copy
🔬 This is a nightly-only experimental API. (core_intrinsics)

intrinsics are unlikely to ever be stabilized, instead they should be used through stabilized interfaces in the rest of the standard library

Expand description

Convert with LLVM’s fptoui/fptosi, which may return undef for values out of range (https://github.com/rust-lang/rust/issues/10184)

Stabilized as f32::to_int_unchecked and f64::to_int_unchecked.