Function vec_sll
#[target_feature(enable = "vector")]
pub unsafe fn vec_sll<T>(a: T, b: vector_unsigned_char) -> T
where
T: VectorSll<vector_unsigned_char, Result = T>,
Vector Shift Left
Performs a left shift for a vector by a given number of bits. Each element of the result is obtained by shifting the corresponding element of a left by the number of bits specified by the last 3 bits of every byte of b. The bits that are shifted out are replaced by zeros.