Function set_splat_m128_s_m256

pub fn set_splat_m128_s_m256(a: m128) -> m256
Available on crate feature dep_safe_arch only.
Expand description

Sets the lowest lane of an m128 as all lanes of an m256.

let a = set_m128_s(5.0);
let b = set_splat_m128_s_m256(a).to_array();
assert_eq!(b, [5.0; 8]);