aboutsummaryrefslogtreecommitdiff
path: root/lib/std/array_hash_map.zig
AgeCommit message (Collapse)Author
2021-05-11fix AutoArrayHashMap's store_hash logicMatthew Borkowski
2021-05-08std: update usage of std.testingVeikka Tuominen
2021-03-28array_hash_map: decrement entries slice len after popping from entries in ↵lithdew
pop() to prevent oob
2021-02-24zig fmt the std libAndrew Kelley
2021-01-16std.ArrayHashMap: add "AssertDiscard" function variantsAndrew Kelley
* Add `swapRemoveAssertDiscard` * Add `orderedRemoveAssertDiscard` * Deprecate `removeAssertDiscard`
2021-01-06std: Support equivalent ArrayList operations in ArrayHashMapAlex Cameron
2021-01-06std: Rename ArrayList shrink => shrinkAndFreeAlex Cameron
2020-12-31Year++Frank Denis
2020-11-02std: Re-enable ArrayHashMap test for mips targetsLemonBoy
2020-09-25std.ArrayHashMap: count and iterator are not deprecatedAndrew Kelley
These APIs allow one to write code that is agnostic of whether it is using an ArrayHashMap or a HashMap, which can be valuable. Specify intent precisely: if you only need the count of the items, it makes sense to have a function for that.
2020-09-02hash_map: rename to ArrayHashMap and add new HashMap implementationSahnvour