b4ux1t3 :trek_ds9_sisko:#1️⃣<p>In <a href="https://hachyderm.io/tags/Zig" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Zig</span></a>, is it better to hold a slice of small objects and grow it when necessary, or is it better to just hold on to an ArrayList/MultiArrayList? </p><p>I guess the use case is important. Want to track the bullets on screen in a little shoot 'em up (Every new engine I try gets a little shmup, ever since I watched <span class="h-card" translate="no"><a href="https://mastodon.social/@krystman" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>krystman</span></a></span>'s wonderful pico 8 shmup videos) and figured I'd try for "proper" data-oriented design a la Andrew Kelley's talk.</p><p>My assumption is that the (multi)ArrayLists will be more effective at managing bursts of memory, but I figure it wouldn't be _that_ difficult to build a pooling system that allocates when it needs to but re-purposes when it has instances marked "off screen".</p><p>Or. . .maybe there's a pool-like system in the std library?</p>