We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d84a05 commit f4ad981Copy full SHA for f4ad981
reference/src/representation/vectors.md
@@ -35,8 +35,8 @@ assert!(align_of::<Vector<T, N>>() >= align_of::<T>());
35
That is, two distinct `repr(simd)` vector types that have the same `T` and the
36
same `N` have the same size and alignment.
37
38
-The layout of elements within a vector is the same as that of `[T; N]` such that
39
-there is a a 1:1 correspondence between the indices of the vector and arrays:
+Vector elements are laid out in source field order, enabling random access to
+vector elements by reinterpreting the vector as an array:
40
41
```rust
42
union U {
0 commit comments