1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use crate::map::Map; use corundum::default::*; use corundum::stm::Journal; use corundum::RootObj; type P = Allocator; pub struct CTree {} impl<K, V> Map<K, V> for CTree {} impl RootObj<P> for CTree { fn init(_: &Journal<P>) -> Self { todo!() } }