Function bitor_m128d
pub fn bitor_m128d(a: m128d, b: m128d) -> m128d
Available on crate feature
dep_safe_arch
only.Expand description
Bitwise a | b
.
let a = m128d::from_array([1.0, 0.0]);
let b = m128d::from_array([1.0, 1.0]);
let c = bitor_m128d(a, b).to_array();
assert_eq!(c, [1.0, 1.0]);