package core.array
Untyped_Array :: struct { data: rawptr count: u32 capacity: u32 allocator: Allocator }
Useful structure when talking about dynamic arrays where you don't know of what type they store. For example, when passing a dynamic array as an 'any' argument.