@@ -42,62 +42,62 @@ impl_integer_vector! { i32 }
4242impl_integer_vector ! { i64 }
4343impl_integer_vector ! { i8 }
4444
45- /// Vector of two `isize` values
45+ /// A SIMD vector with two elements of type `isize`.
4646pub type isizex2 = Simd < isize , 2 > ;
4747
48- /// Vector of four `isize` values
48+ /// A SIMD vector with four elements of type `isize`.
4949pub type isizex4 = Simd < isize , 4 > ;
5050
51- /// Vector of eight `isize` values
51+ /// A SIMD vector with eight elements of type `isize`.
5252pub type isizex8 = Simd < isize , 8 > ;
5353
54- /// Vector of two `i16` values
54+ /// A 32-bit SIMD vector with two elements of type `i16`.
5555pub type i16x2 = Simd < i16 , 2 > ;
5656
57- /// Vector of four `i16` values
57+ /// A 64-bit SIMD vector with four elements of type `i16`.
5858pub type i16x4 = Simd < i16 , 4 > ;
5959
60- /// Vector of eight `i16` values
60+ /// A 128-bit SIMD vector with eight elements of type `i16`.
6161pub type i16x8 = Simd < i16 , 8 > ;
6262
63- /// Vector of 16 `i16` values
63+ /// A 256-bit SIMD vector with 16 elements of type `i16`.
6464pub type i16x16 = Simd < i16 , 16 > ;
6565
66- /// Vector of 32 `i16` values
66+ /// A 512-bit SIMD vector with 32 elements of type `i16`.
6767pub type i16x32 = Simd < i16 , 32 > ;
6868
69- /// Vector of two `i32` values
69+ /// A 64-bit SIMD vector with two elements of type `i32`.
7070pub type i32x2 = Simd < i32 , 2 > ;
7171
72- /// Vector of four `i32` values
72+ /// A 128-bit SIMD vector with four elements of type `i32`.
7373pub type i32x4 = Simd < i32 , 4 > ;
7474
75- /// Vector of eight `i32` values
75+ /// A 256-bit SIMD vector with eight elements of type `i32`.
7676pub type i32x8 = Simd < i32 , 8 > ;
7777
78- /// Vector of 16 `i32` values
78+ /// A 512-bit SIMD vector with 16 elements of type `i32`.
7979pub type i32x16 = Simd < i32 , 16 > ;
8080
81- /// Vector of two `i64` values
81+ /// A 128-bit SIMD vector with two elements of type `i64`.
8282pub type i64x2 = Simd < i64 , 2 > ;
8383
84- /// Vector of four `i64` values
84+ /// A 256-bit SIMD vector with four elements of type `i64`.
8585pub type i64x4 = Simd < i64 , 4 > ;
8686
87- /// Vector of eight `i64` values
87+ /// A 512-bit SIMD vector with eight elements of type `i64`.
8888pub type i64x8 = Simd < i64 , 8 > ;
8989
90- /// Vector of four `i8` values
90+ /// A 32-bit SIMD vector with four elements of type `i8`.
9191pub type i8x4 = Simd < i8 , 4 > ;
9292
93- /// Vector of eight `i8` values
93+ /// A 64-bit SIMD vector with eight elements of type `i8`.
9494pub type i8x8 = Simd < i8 , 8 > ;
9595
96- /// Vector of 16 `i8` values
96+ /// A 128-bit SIMD vector with 16 elements of type `i8`.
9797pub type i8x16 = Simd < i8 , 16 > ;
9898
99- /// Vector of 32 `i8` values
99+ /// A 256-bit SIMD vector with 32 elements of type `i8`.
100100pub type i8x32 = Simd < i8 , 32 > ;
101101
102- /// Vector of 64 `i8` values
102+ /// A 512-bit SIMD vector with 64 elements of type `i8`.
103103pub type i8x64 = Simd < i8 , 64 > ;
0 commit comments