pub unsafe fn simd_shr<T>(_lhs: T, _rhs: T) -> T🔬This is a nightly-only experimental API. (
core_intrinsics)Expand description
Shifts vector right elementwise, with UB on overflow.
T must be a vector of integer primitive types.
Shifts lhs right by rhs, shifting in sign bits for signed types.
§Safety
Each element of rhs must be less than <int>::BITS.