huonw / simd

[DEPRECATED] see:
http://github.com/rust-lang-nursery/simd
Apache License 2.0
82 stars 18 forks source link

Make new & splat const functions #6

Closed ghost closed 9 years ago

ghost commented 9 years ago

This allows new and splat to be used when initializing consts and statics:

const MASK: u8x16 = u8x16::splat(0x0f);
static INDEX: i32x4 = i32x4::new(3, 2, 1, 0);