summary refs log tree commit diff
path: root/src/libstd/collections/hashmap/table.rs
AgeCommit message (Collapse)AuthorLines
2014-09-27auto merge of #17517 : pczarn/rust/hashmap-lifetimes, r=alexcrichtonbors-5/+15
Fixes #17500
2014-09-24Fix free lifetime vars in HashMap's iteratorsPiotr Czarnecki-5/+15
2014-09-21Remove #[allow(deprecated)] from libstdAlex Crichton-2/+2
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-09-16Align with _mut conventionsAaron Turon-2/+2
As per [RFC 52](https://github.com/rust-lang/rfcs/blob/master/active/0052-ownership-variants.md), use `_mut` suffixes to mark mutable variants, and `into_iter` for moving iterators. [breaking-change]
2014-09-04std: Fix overflow of HashMap's capacityPiotr Czarnecki-32/+49
2014-09-04std: Refine and document HashMap's codePiotr Czarnecki-300/+302
* branchless `bucket.next()` * robin_hood is a free function * fixed the resize policy that was off by one * documented the growth algorithm * updated documentation after interface changes * removed old fixmes
2014-09-02std: Split hashmap.rs into modulesPiotr Czarnecki-0/+877