Enum wast::V128Pattern [−][src]
pub enum V128Pattern { I8x16([i8; 16]), I16x8([i16; 8]), I32x4([i32; 4]), I64x2([i64; 2]), F32x4([NanPattern<Float32>; 4]), F64x2([NanPattern<Float64>; 2]), }
A version of V128Const
that allows NanPattern
s.
This implementation is necessary because only float types can include NaN patterns; otherwise
it is largely similar to the implementation of V128Const
.
Variants
F32x4([NanPattern<Float32>; 4])
F64x2([NanPattern<Float64>; 2])