orx-priority-queue 1.4.0

Priority queue traits and high performance d-ary heap implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod as_slice;
mod clear;
mod is_empty;
mod len;
mod peek;
mod push_pop;
mod push_then_pop;

#[allow(unused_imports)]
pub use as_slice::test_as_slice;
pub use clear::test_clear;
pub use is_empty::test_is_empty;
pub use len::test_len;
pub use peek::test_peek;
pub use push_pop::{test_push_pop, test_push_pop_randomized};
pub use push_then_pop::{test_push_then_pop, test_push_then_pop_randomized};