| ... | @@ -11,7 +11,7 @@ const testing = std.testing; | ... | @@ -11,7 +11,7 @@ const testing = std.testing; |
| 11 | /// stores separate lists for each field of the struct or | 11 | /// stores separate lists for each field of the struct or |
| 12 | /// lists of tags and bare unions. | 12 | /// lists of tags and bare unions. |
| 13 | /// This allows for memory savings if the struct or union has padding, | 13 | /// This allows for memory savings if the struct or union has padding, |
| 14 | /// and also improves cache usage if only some fields or or just tags | 14 | /// and also improves cache usage if only some fields or just tags |
| 15 | /// are needed for a computation. The primary API for accessing fields is | 15 | /// are needed for a computation. The primary API for accessing fields is |
| 16 | /// the `slice()` function, which computes the start pointers | 16 | /// the `slice()` function, which computes the start pointers |
| 17 | /// for the array of each field. From the slice you can call | 17 | /// for the array of each field. From the slice you can call |