Function simd_extract_dyn

unsafe fn simd_extract_dyn<T, U>(x: T, idx: u32) -> U

Extracts an element from a vector.

T must be a vector with element type U.

If the index is const, simd_extract may emit better assembly.

Safety

idx must be in-bounds of the vector.