Simplify language for scatter/gather

Co-authored-by: Caleb Zulawski <caleb.zulawski@gmail.com>
This commit is contained in:
Jubilee 2021-10-02 15:16:33 -07:00 committed by Jubilee Young
parent 9be26656d2
commit a16b481a08

View File

@ -58,7 +58,7 @@ where
}
/// Reads from potentially discontiguous indices in `slice` to construct a SIMD vector.
/// Lanes given an out-of-bounds index instead select values from the `or` vector.
/// If an index is out-of-bounds, the lane is instead selected from the `or` vector.
///
/// # Examples
/// ```
@ -79,7 +79,7 @@ where
}
/// Reads from potentially discontiguous indices in `slice` to construct a SIMD vector.
/// Lanes given an out-of-bounds index instead are set the default value for the type.
/// If an index is out-of-bounds, the lane is set to the default value for the type.
///
/// # Examples
/// ```