mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
06884da42b
This makes passing an allocator easier, as you no longer have to resort to
named arguments:
Before:
`join(a, b, c)` became `join(elems={a, b, c}, allocator=ally)`
After:
`join({a, b, c})` becomes `join({a, b, c}, ally)`