Function simd_extract

Source
pub unsafe fn simd_extract<T, U>(_x: T, _idx: u32) -> U
🔬This is a nightly-only experimental API. (core_intrinsics)
Expand description

Extracts an element from a vector.

T must be a vector with element type U.

§Safety

idx must be in-bounds of the vector.