We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1b34ac commit 351c587Copy full SHA for 351c587
library/core/src/intrinsics/mod.rs
@@ -2793,6 +2793,9 @@ pub fn round_ties_even_f32(x: f32) -> f32 {
2793
unsafe { rintf32(x) }
2794
}
2795
2796
+/// Provided for compatibility with stdarch. DO NOT USE.
2797
+pub use round_ties_even_f32 as rintf32;
2798
+
2799
/// Returns the nearest integer to an `f64`. Rounds half-way cases to the number with an even
2800
/// least significant digit.
2801
///
@@ -2820,6 +2823,9 @@ pub fn round_ties_even_f64(x: f64) -> f64 {
2820
2823
unsafe { rintf64(x) }
2821
2824
2822
2825
2826
2827
+pub use round_ties_even_f64 as rintf64;
2828
2829
/// Returns the nearest integer to an `f128`. Rounds half-way cases to the number with an even
2830
2831
0 commit comments