about summary refs log tree commit diff
path: root/src/libcollections/priority_queue.rs
AgeCommit message (Expand)AuthorLines
2014-11-02refactor libcollections as part of collection reformAlexis Beingessner-698/+0
2014-11-01collections: Remove all collections traitsAlex Crichton-12/+9
2014-10-30rollup merge of #18445 : alexcrichton/index-mutAlex Crichton-13/+13
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-13/+13
2014-10-28Update code with new lint namesAaron Turon-1/+1
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-14/+0
2014-09-13Move info into individual modules.Steve Klabnik-0/+5
2014-08-29Register new snapshotsAlex Crichton-7/+0
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-1/+8
2014-08-22auto merge of #16663 : Gankro/rust/heapify, r=alexcrichtonbors-4/+3
2014-08-21make priorityqueue's from_iter use heapifyAlexis Beingessner-4/+3
2014-08-19A few minor documentation fixesP1start-18/+20
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-1/+1
2014-08-12Deprecation fallout in libcollectionsAaron Turon-3/+3
2014-08-01Fix misspelled comments.Joseph Crail-1/+1
2014-07-24Document PriorityQueue.Jonas Hietala-12/+177
2014-07-24Move contructors to the top of PriorityQueue.Jonas Hietala-19/+19
2014-07-23collections: Move push/pop to MutableSeqBrian Anderson-1/+2
2014-07-22Main example for priority queue using dijkstra's algorithm.Jonas Hietala-1/+137
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-18/+18
2014-06-09collections: Add missing Default implsTom Jakubowski-0/+6
2014-06-09core: Move the collections traits to libcollectionsAlex Crichton-0/+1
2014-06-08core: Rename `container` mod to `collections`. Closes #12543Brian Anderson-1/+1
2014-06-05Fallout from the libcollections movementAlex Crichton-3/+7
2014-06-05std: Recreate a `collections` moduleAlex Crichton-4/+6
2014-06-04core: Apply stability attributes to ptr modBrian Anderson-5/+6
2014-06-01std: Drop Total from Total{Eq,Ord}Alex Crichton-5/+5
2014-05-20core: Stabilize the mem moduleAlex Crichton-9/+9
2014-05-18Fix dead code warningsAdolfo Ochagavía-0/+2
2014-05-18Refactored and renamed functions to avoid failureAdolfo Ochagavía-63/+57
2014-05-18Rename to_vec and to_sorted_vecAdolfo Ochagavía-2/+8
2014-05-18Replaced Ord by TotalOrd in priority queueAdolfo Ochagavía-5/+5
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-7/+7
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-5/+5
2014-04-28Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is p...Jonathan S-2/+2
2014-04-09collections: replace all ~[T] with Vec<T>.Huon Wilson-45/+45
2014-04-04extra: Add with_capacity to PriorityQueue and SmallIntMapErick Tryzelaar-0/+5
2014-03-31collections: Switch field privacy as necessaryAlex Crichton-2/+2
2014-03-30Rename `from_iterator` to `from_iter` for consistency.Brian Anderson-1/+1
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
2014-03-25Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v...Marvin Löbel-4/+3
2014-03-20rename std::vec -> std::sliceDaniel Micay-2/+2
2014-02-11Move replace and swap to std::mem. Get rid of std::utilEdward Wang-2/+1
2014-02-09std: Add move_val_init to mem. Replace direct intrinsic usageBrian Anderson-1/+1
2014-02-07moved collections from libextra into libcollectionsHeroesGrave-0/+388