Files
Odin/tests/core
Tetralux f8003b8b03 [runtime] make(map[K]V) should not allocate any capacity
`make(map[K]V)` was resolving to `make_map_cap()` which allocates initial capacity when it wasn't intended to.
It now calls `make_map()` which doesn't allocate any capacity.

Both `make(map[K]V)` and `make(map[K]V, allocator)` will NOT allocate initial capacity now.
2024-12-01 11:54:54 +11:00
..
2024-06-12 13:30:00 +02:00
2024-08-08 21:15:59 +02:00
2024-09-03 17:23:42 -04:00
2024-09-10 14:52:20 -04:00
2024-06-15 15:49:05 -04:00
2024-06-09 17:59:59 +02:00
2024-08-28 19:53:20 +02:00
2024-08-18 20:14:14 -04:00
2024-12-01 11:54:54 +11:00
2024-06-29 18:51:28 +01:00
2024-06-02 14:47:09 -04:00
2024-08-21 14:06:04 +01:00
2024-06-02 14:47:09 -04:00
2024-06-08 16:43:45 -04:00