You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our heap vectors can only go up to 2^32 items but still store their length and capacity as usize which supports up to 2^64 items on a 64-bit machine. This wastes 8 bytes per heap vector. We should implement a ShortVec that uses u32 as the storing size.