Function core::arch::wasm32::i64x2_shuffle 1.54.0[−][src]
pub fn i64x2_shuffle<const I0: usize, const I1: usize>(a: v128, b: v128) -> v128
This is supported on WebAssembly and target feature
simd128
only.Expand description
与 i8x16_shuffle
相同,但操作时就像输入是两个
64 位整数,仅需 2 个索引即可重排。
[0, 1] 范围内的索引从 a
中选择,而 [2, 3] 则从 b
中选择。
请注意,这将生成 v8x16.shuffle
指令,因为没有原生 i64x2.shuffle
指令 (不需要一个,因为 i8x16.shuffle
就足够了)。