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

for HashmapTx { fn init(_: &Journal

) -> Self { todo!() } }