@@ -359,10 +359,10 @@ where
359
359
Self :: load_select ( slice, Mask :: splat ( true ) , or)
360
360
}
361
361
362
- /// Reads contiguous elements from `slice`. Each lane is read from memory if its
363
- /// corresponding lane in `enable` is `true`.
362
+ /// Reads contiguous elements from `slice`. Each element is read from memory if its
363
+ /// corresponding element in `enable` is `true`.
364
364
///
365
- /// When the lane is disabled or out of bounds for the slice, that memory location
365
+ /// When the element is disabled or out of bounds for the slice, that memory location
366
366
/// is not accessed and the corresponding value from `or` is passed through.
367
367
///
368
368
/// # Examples
@@ -387,10 +387,10 @@ where
387
387
Self :: load_select ( slice, enable, Default :: default ( ) )
388
388
}
389
389
390
- /// Reads contiguous elements from `slice`. Each lane is read from memory if its
391
- /// corresponding lane in `enable` is `true`.
390
+ /// Reads contiguous elements from `slice`. Each element is read from memory if its
391
+ /// corresponding element in `enable` is `true`.
392
392
///
393
- /// When the lane is disabled or out of bounds for the slice, that memory location
393
+ /// When the element is disabled or out of bounds for the slice, that memory location
394
394
/// is not accessed and the corresponding value from `or` is passed through.
395
395
///
396
396
/// # Examples
@@ -419,10 +419,10 @@ where
419
419
unsafe { Self :: load_select_ptr ( slice. as_ptr ( ) , enable, or) }
420
420
}
421
421
422
- /// Reads contiguous elements from `slice`. Each lane is read from memory if its
423
- /// corresponding lane in `enable` is `true`.
422
+ /// Reads contiguous elements from `slice`. Each element is read from memory if its
423
+ /// corresponding element in `enable` is `true`.
424
424
///
425
- /// When the lane is disabled, that memory location is not accessed and the corresponding
425
+ /// When the element is disabled, that memory location is not accessed and the corresponding
426
426
/// value from `or` is passed through.
427
427
#[ must_use]
428
428
#[ inline]
@@ -436,10 +436,10 @@ where
436
436
unsafe { Self :: load_select_ptr ( ptr, enable, or) }
437
437
}
438
438
439
- /// Reads contiguous elements starting at `ptr`. Each lane is read from memory if its
440
- /// corresponding lane in `enable` is `true`.
439
+ /// Reads contiguous elements starting at `ptr`. Each element is read from memory if its
440
+ /// corresponding element in `enable` is `true`.
441
441
///
442
- /// When the lane is disabled, that memory location is not accessed and the corresponding
442
+ /// When the element is disabled, that memory location is not accessed and the corresponding
443
443
/// value from `or` is passed through.
444
444
#[ must_use]
445
445
#[ inline]
0 commit comments