Mostly exploring hashtables, some new files...

I made the files for the ast but they're not populated yet.
I made some initial implementation for raddbg flavored linked-lists.
This commit is contained in:
2024-02-29 19:37:37 -05:00
parent 1de141288f
commit 12aa6b4870
14 changed files with 223 additions and 85 deletions

View File

@ -15,9 +15,6 @@ Array :: struct ( $ Type : typeid ) {
data : [^]Type,
}
// @(private=file)
// Array :: Array_ZPL
array_to_slice :: proc( using self : Array( $ Type) ) -> []Type {
return slice_ptr( data, num )
}