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

for CTree { fn init(_: &Journal

) -> Self { todo!() } }