1mod binary_heap; 2 3/// All binary trees and heaps. 4pub mod binary { 5 pub use crate::binary_heap::{BinaryMaxHeap, BinaryMinHeap}; 6}