simd 0.2.2

`simd` offers limited cross-platform access to SIMD instructions on CPUs, as well as raw interfaces to platform-specific instructions. (To be obsoleted by the `std::simd` implementation RFC 2366.)
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate simd;

use simd::*;

#[allow(unused_variables)]
fn main() {
    let x = i32x4::splat(1_i32);
    let y = -x;
    let z = !x;
}