diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -75,9 +75,9 @@ impl Drop for OwnedAnyPtr } } -/// A list of `ItemT`. This data structure stores a list for every field of `ItemT`, -/// reducing memory usage if `ItemT` contains padding and improves memory cache usage if -/// only certain fields are needed when iterating. +/// A list of runtime defined items. This data structure stores fields contiguously, +/// improving cache efficiency when iterating through items and only specific fields are +/// wanted. /// /// Inspired by Zig's `MultiArrayList`. /// |