Clarify concatenation order

Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com>
This commit is contained in:
Caleb Zulawski 2021-04-17 15:21:25 -04:00 committed by GitHub
parent 977f26f692
commit 1999c54890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,9 +71,9 @@ macro_rules! impl_shuffle_lane {
/// Deinterleave two vectors.
///
/// The first result contains the even lanes of `self` and `other` concatenated.
/// The first result contains the even lanes of `self` and then `other`, concatenated.
///
/// The second result contains the odd lanes of `self` and `other` concatenated.
/// The second result contains the odd lanes of `self` and then `other`, concatenated.
#[inline]
pub fn deinterleave(self, other: Self) -> (Self, Self) {
const fn even() -> [u32; $n] {