dashmap icon indicating copy to clipboard operation
dashmap copied to clipboard

Use FixedArray instead of Box<[T]>

Open GnomedDev opened this issue 6 months ago • 0 comments

This reduces the inline size of DashMap from ptr (usize) + length (usize) + shift (usize) to ptr (usize) + length (u32) + shift (u16) while removing padding which made no measurable difference in my testing. This should be benchmarked and especially checked on an ARM server to see if the padding makes a difference there.

GnomedDev avatar Feb 13 '24 16:02 GnomedDev