macro_rules! vec_map {
($input:expr, $output:expr, |$x:ident| $($body:tt)*) => { ... };
}Expand description
Map over SIMD vector chunks of size 4, applying a closure to each chunk.
macro_rules! vec_map {
($input:expr, $output:expr, |$x:ident| $($body:tt)*) => { ... };
}Map over SIMD vector chunks of size 4, applying a closure to each chunk.