We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdf7e3d commit b370eb3Copy full SHA for b370eb3
src/v256.rs
@@ -329,6 +329,19 @@ impl i32x8 {
329
}
330
331
332
+impl f32x8 {
333
+ /// Convert each lane to a signed integer.
334
+ #[inline]
335
+ pub fn to_i32(self) -> i32x8 {
336
+ unsafe {simd_cast(self)}
337
+ }
338
+ /// Convert each lane to an unsigned integer.
339
340
+ pub fn to_u32(self) -> u32x8 {
341
342
343
+}
344
+
345
impl i16x16 {
346
/// Convert each lane to an unsigned integer.
347
#[inline]
0 commit comments