pub unsafe fn simd_insert<T, U>(_x: T, _idx: u32, _val: U) -> T
🔬This is a nightly-only experimental API. (
core_intrinsics
)Expand description
Inserts an element into a vector, returning the updated vector.
T
must be a vector with element type U
.
§Safety
idx
must be in-bounds of the vector.