[][src]Function safe_arch::load_unaligned_hi_lo_m256d

#[must_use]pub fn load_unaligned_hi_lo_m256d(a: &[f64; 2], b: &[f64; 2]) -> m256d
This is supported with target feature avx only.

Load data from memory into a register.

assert_eq!(
  load_unaligned_hi_lo_m256d(&[3.0, 4.0], &[1.0, 2.0]).to_array(),
  [1.0, 2.0, 3.0, 4.0]
);