Add lanes()
This commit is contained in:
parent
afd7c5a5ee
commit
4fbccafc66
1 changed files with 5 additions and 0 deletions
|
|
@ -24,6 +24,11 @@ where
|
|||
LaneCount<LANES>: SupportedLaneCount,
|
||||
T: SimdElement,
|
||||
{
|
||||
/// Get the number of lanes in this vector.
|
||||
pub const fn lanes(&self) -> usize {
|
||||
LANES
|
||||
}
|
||||
|
||||
/// Construct a SIMD vector by setting all lanes to the given value.
|
||||
pub const fn splat(value: T) -> Self {
|
||||
Self([value; LANES])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue