crndm 0.1.0

Persistent Programming Library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::map::Map;
use crndm::default::*;
use crndm::stm::Journal;
use crndm::RootObj;

type P = BuddyAlloc;

pub struct HashmapTx {}

impl<K, V> Map<K, V> for HashmapTx {}

impl RootObj<P> for HashmapTx {
    fn init(_: &Journal<P>) -> Self {
        todo!()
    }
}