about summary refs log tree commit diff
path: root/src/libcore/container.rs
AgeCommit message (Expand)AuthorLines
2013-05-10core: Use the new `for` protocolAlex Crichton-0/+53
2013-05-07Add pop() and swap() to the Map traitAlex Crichton-0/+8
2013-05-04Register snapshotsBrian Anderson-36/+0
2013-04-10core: changes in response to #5656Niko Matsakis-0/+36
2013-04-10Revert map.each to something which takes two parametersNiko Matsakis-0/+3
2013-03-24expose find_mut in the Map traitDaniel Micay-1/+1
2013-03-24treemap: add a find_mut methodDaniel Micay-1/+4
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-14/+14
2013-03-18librustc: Make the compiler ignore purity.Patrick Walton-2/+2
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime notation....Patrick Walton-1/+1
2013-03-13add the mutate_values method to the Map traitDaniel Micay-0/+3
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-6/+6
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-1/+0
2013-03-05libcore: Implement an `Equiv` trait and use it on hashmaps.Patrick Walton-0/+1
2013-02-07rm each method from the Map traitDaniel Micay-3/+0
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-3/+0
2013-01-30librustc: Change `self` as a type to `Self` everywhere. r=brsonPatrick Walton-7/+7
2013-01-29add intersection and union to the Set traitDaniel Micay-0/+6
2013-01-29add difference and symmetric_difference to SetDaniel Micay-0/+6
2013-01-29add is_disjoint to the Set traitDaniel Micay-0/+4
2013-01-29add is_subset and is_superset to the Set traitDaniel Micay-0/+6
2013-01-23add find method to the core::container::Map traitDaniel Micay-0/+5
2013-01-22add a base Container traitDaniel Micay-1/+9
2013-01-22add a container::Map traitDaniel Micay-0/+26
2013-01-22add a Mutable container trait with clearDaniel Micay-1/+6
2013-01-20add a Set trait and implement it for TreeSetDaniel Micay-0/+24