use crate::map::Map; use corundum::default::*; use corundum::stm::Journal; use corundum::RootObj; type P = Allocator; pub struct RbTree {} impl Map for RbTree {} impl RootObj

for RbTree { fn init(_: &Journal

) -> Self { todo!() } }