From 28131b6b012ef0a27d0472643c41e33d459186bd Mon Sep 17 00:00:00 2001 From: Judah Caruso Date: Tue, 27 May 2025 00:04:58 -0600 Subject: [PATCH] finish 012 --- TODO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO b/TODO index 40e5a17..5a98727 100644 --- a/TODO +++ b/TODO @@ -2,7 +2,6 @@ [Judah] 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') - 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 [Jesse] 011 [math] add more Vec math procedures @@ -83,3 +82,4 @@ 001 [platform] create module for OS/platform-specific things 024 [x] create file to document conventions/style guide 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