[][src]Function safe_arch::load_unaligned_hi_lo_m256

#[must_use]pub fn load_unaligned_hi_lo_m256(a: &[f32; 4], b: &[f32; 4]) -> m256
This is supported with target feature avx only.

Load data from memory into a register.

assert_eq!(
  load_unaligned_hi_lo_m256(&[5.0, 6.0, 7.0, 8.0], &[1.0, 2.0, 3.0, 4.0])
    .to_array(),
  [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]
);