1 2 3 4 5 6 7 8 9
extern crate simd; use simd::*; fn main() { let x = i32x4::splat(1_i32); let y = -x; let z = !x; }