@@ -368,7 +368,7 @@ where
368
368
unsafe { Self :: gather_select_ptr ( ptrs, enable, or) }
369
369
}
370
370
371
- /// Read pointers elementwise into a SIMD vector vector .
371
+ /// Read pointers elementwise into a SIMD vector.
372
372
///
373
373
/// # Safety
374
374
///
@@ -398,7 +398,7 @@ where
398
398
unsafe { Self :: gather_select_ptr ( source, Mask :: splat ( true ) , Self :: default ( ) ) }
399
399
}
400
400
401
- /// Conditionally read pointers elementwise into a SIMD vector vector .
401
+ /// Conditionally read pointers elementwise into a SIMD vector.
402
402
/// The mask `enable`s all `true` lanes and disables all `false` lanes.
403
403
/// If a lane is disabled, the lane is selected from the `or` vector and no read is performed.
404
404
///
@@ -541,7 +541,7 @@ where
541
541
}
542
542
}
543
543
544
- /// Write pointers elementwise into a SIMD vector vector .
544
+ /// Write pointers elementwise into a SIMD vector.
545
545
///
546
546
/// # Safety
547
547
///
@@ -566,7 +566,7 @@ where
566
566
unsafe { self . scatter_select_ptr ( dest, Mask :: splat ( true ) ) }
567
567
}
568
568
569
- /// Conditionally write pointers elementwise into a SIMD vector vector .
569
+ /// Conditionally write pointers elementwise into a SIMD vector.
570
570
/// The mask `enable`s all `true` lanes and disables all `false` lanes.
571
571
/// If a lane is disabled, the write to that lane is skipped.
572
572
///
0 commit comments