HashMap.table

The table, initialized on first use, and resized as necessary. When allocated, length is always a power of two. (We also tolerate length zero in some operations to allow bootstrapping mechanics that are currently not needed.)

class HashMap(K, V)
HashMapNode!(K, V)[] table;

Meta