Hacker News new | ask | show | jobs
by outpost_mystic2 162 days ago
By default in oxcaml, "stack" / local allocations happen in a separate stack on the heap (which the runtime allocates for you). If you allocate enough to exceed that capacity, it will resize it dynamically for you.
1 comments

So stack-local arena. Neat.