summary refs log tree commit diff
path: root/src/libcollections/binary_heap.rs
AgeCommit message (Expand)AuthorLines
2016-08-22std: Stabilize APIs for the 1.12 releaseAlex Crichton-6/+5
2016-07-03std: Stabilize APIs for the 1.11.0 releaseAlex Crichton-5/+1
2016-06-21implemented peek_mut and unit testsNathan Moos-0/+68
2016-04-17Implement `Clone` for `binary_heap::IntoIter`Andrew Paseltiner-0/+1
2016-04-16collections: add append and extend specialization for binary heapAndrey Tonkih-5/+88
2016-03-30Rollup merge of #32607 - tshepang:we-gots-intoiterator, r=apasel422Steve Klabnik-1/+1
2016-03-30Rollup merge of #32603 - tshepang:capitalise, r=blussSteve Klabnik-1/+1
2016-03-30doc: no need for an explicit iter()Tshepang Lekhonkhobe-1/+1
2016-03-29doc: first letter should be upper caseTshepang Lekhonkhobe-1/+1
2016-03-28style: Use `iter` for IntoIterator parameter namesKamal Marhubi-4/+4
2016-03-10Remove unnecessary mut in docs causing test failures.Nathan Kleyn-1/+1
2016-03-09Address review comments to add "basic usage" sections to docs.Nathan Kleyn-0/+38
2016-03-08Add missing documentation examples for BinaryHeap.Nathan Kleyn-0/+106
2015-12-23BinaryHeap: Use full sift down in .pop()Ulrik Sverdrup-1/+26
2015-12-13Make BinaryHeap Dijkstra example return Optionjethrogb-8/+8
2015-12-10std: Remove deprecated functionality from 1.5Alex Crichton-20/+0
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-5/+2
2015-11-25Auto merge of #30017 - nrc:fmt, r=brsonbors-28/+66
2015-11-24rustfmt libcollectionsNick Cameron-28/+66
2015-11-20Rename #[deprecated] to #[rustc_deprecated]Vadim Petrochenkov-1/+1
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+2
2015-11-13Auto merge of #29811 - bluss:binary-heap-sift-less, r=gankrobors-7/+8
2015-11-13BinaryHeap: Simplify sift downUlrik Sverdrup-7/+8
2015-11-12libcollections: deny warnings in doctestsKevin Butler-0/+1
2015-10-25std: Stabilize library APIs for 1.5Alex Crichton-30/+31
2015-09-23Override `clone_from` for `{BinaryHeap, String}`Andrew Paseltiner-1/+11
2015-09-02Auto merge of #28156 - nagisa:binaryheap-debug, r=Gankrobors-0/+8
2015-09-01Implement Debug for BinaryHeapSimonas Kazlauskas-0/+8
2015-09-01Add missing stability markings to BinaryHeap.Eli Friedman-8/+23
2015-08-18Fixed example in documentationjotomicron-1/+1
2015-08-15collections: Add issues for unstable featuresAlex Crichton-2/+3
2015-08-11Register new snapshotsAlex Crichton-3/+0
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+2
2015-07-27Show appropriate feature flags in docsSteve Klabnik-8/+16
2015-06-17collections: Split the `collections` featureAlex Crichton-7/+9
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-2/+2
2015-06-08Implement RFC 839Johannes Oertel-0/+7
2015-05-28collections: Make BinaryHeap panic safe in sift_up / sift_downUlrik Sverdrup-25/+88
2015-04-28collections: Implement vec::drain(range) according to RFC 574Ulrik Sverdrup-1/+1
2015-04-17std: Add Default/IntoIterator/ToOwned to the preludeAlex Crichton-25/+19
2015-04-01Fallout in public-facing and semi-public-facing libsNiko Matsakis-1/+1
2015-03-25Rollup merge of #23617 - steveklabnik:gh23564, r=ManishearthManish Goregaokar-0/+2
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+8
2015-03-22Note order of BinaryHeap::drainSteve Klabnik-0/+2
2015-03-16extract libcollections tests into libcollectionstestJorge Aparicio-215/+0
2015-03-16document undefined collection behavior with interior mutabilityAndrew Paseltiner-0/+5
2015-03-03Add `: Box<_>` or `::Box<_>` type annotations to various places.Felix S. Klock II-1/+1
2015-02-24Use arrays instead of vectors in testsVadim Petrochenkov-1/+1
2015-02-18make FromIterator use IntoIteratorAlexis-2/+2
2015-02-18make Extend use IntoIteratorAlexis-1/+2