//! Unified views on SIMD types.
/// This is mostly copy-paste from `packed_simd`, where this trait is unfortunately
/// sealed right now. In the future this might come from `std::simd`.
pubtraitSimd{/// Element type of the SIMD vector
typeElement;/// The number of elements in the SIMD vector.
constLANES:usize;/// The type: `[u32; Self::N]`.
typeLanesType;/// Added for convenience
fnsplat(t:Self::Element)->Self;/// Added for convenience
fnas_array(&self)->&[Self::Element];fnsum(&self)->Self::Element;}