We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56566d8 + 36cca22 commit cad7434Copy full SHA for cad7434
crates/core_simd/src/vector/float.rs
@@ -105,8 +105,8 @@ macro_rules! impl_float_vector {
105
self.abs().lanes_ne(Self::splat(0.0)) & (self.to_bits() & Self::splat(<$type>::INFINITY).to_bits()).lanes_eq(Simd::splat(0))
106
}
107
108
- /// Returns true for each lane if its value is neither neither zero, infinite,
109
- /// subnormal, or `NaN`.
+ /// Returns true for each lane if its value is neither zero, infinite,
+ /// subnormal, nor `NaN`.
110
#[inline]
111
#[must_use = "method returns a new mask and does not mutate the original value"]
112
pub fn is_normal(self) -> Mask<$mask_ty, LANES> {
0 commit comments