pub unsafe extern "rust-intrinsic" fn float_to_int_unchecked<Float, Int>( value: Float) -> Int where Float: Copy, Int: Copy,
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
.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/intrinsics/fn.float_to_int_unchecked.html