Compare commits

..

No commits in common. "046fa5042988cfe7d81a6e547bd6359541ced653" and "8822811dbbf262657d206a32bc3d3e8bbde05f07" have entirely different histories.

3
TODO
View file

@ -1,7 +1,6 @@
*** IN PROGRESS ***
[Judah]
017 [x] re-implement dynamic arrays (should mirror procedures on 'Static_Array')
[Jesse]
011 [math] add more Vec math procedures
@ -21,6 +20,7 @@
014 [platform] add support for read file, write file, etc.
015 [meta] create metaprogramming utilitites module (AST rewriting, code generation/introspection, etc.)
016 [x] default to arena-based allocators everywhere (a la brevis/serenum)
017 [x] re-implement dynamic arrays (should mirror procedures on 'Static_Array')
018 [x] enum backed array type (can just be a 'Static_Array' specialization)
019 [rand] create random number generation module (probably port Demetri's 'pcg32_pie')
020 [net] create networking module (just a layer over sockets)
@ -71,7 +71,6 @@
070 [x, bug] figure out why [meta] `for_expansion` procs aren't usable when import is namespaced
071 [math] basic shape collision detection (circle, rect, line)
072 [timestep] create drop-in fixed timestep module
073 [array] standardize api across types (also add 'find' and 'find_pointer')
*** DONE ***