forked from mirror/async-std
7 lines
143 B
Rust
7 lines
143 B
Rust
//! The Rust priority queue implemented with a binary heap
|
|
|
|
mod extend;
|
|
mod from_stream;
|
|
|
|
#[doc(inline)]
|
|
pub use std::collections::BinaryHeap;
|