orx-priority-queue 0.3.3

Priority queue traits, d-ary heap implementations having binary heap as a special case.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod as_slice;
mod clear;
mod is_empty;
mod len;
mod peek;
mod push_pop;
mod push_then_pop;

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};