finish 073

This commit is contained in:
Judah Caruso 2025-05-27 19:36:43 -06:00
parent 796def9236
commit 1b6d48d14b

2
TODO
View file

@ -2,7 +2,6 @@
[Judah] [Judah]
017 [x] re-implement dynamic arrays (should mirror procedures on 'Static_Array') 017 [x] re-implement dynamic arrays (should mirror procedures on 'Static_Array')
073 [array] standardize api across types (also add 'find' and 'find_pointer')
[Jesse] [Jesse]
011 [math] add more Vec math procedures 011 [math] add more Vec math procedures
@ -84,3 +83,4 @@
034 [x] can we add location info to Allocator_Proc? 034 [x] can we add location info to Allocator_Proc?
012 [map] create a simple arena-backed hash map implementation 'Map(K, V)', should be able to hash a key of any type (must include: get, set, remove, for_expansion) - possibly blocked by 032 012 [map] create a simple arena-backed hash map implementation 'Map(K, V)', should be able to hash a key of any type (must include: get, set, remove, for_expansion) - possibly blocked by 032
065 [array] add dynamic, but stable array implementation (values should not move in memory once appended to the array; should mirror procedures on 'Static_Array') 065 [array] add dynamic, but stable array implementation (values should not move in memory once appended to the array; should mirror procedures on 'Static_Array')
073 [array] standardize api across types (also add 'find' and 'find_pointer')