1 2 3 4 5 6 7 8 9 10 11 12
#![doc = include_str!("../README.md")] #![no_std] #![expect(irrefutable_let_patterns)] // FIXME: Remove this in Rust 1.95.0 #[cfg(test)] extern crate std; pub mod bintree; pub mod list; pub mod node_data; pub mod rbtree; pub mod slist;