infinitree 0.11.0

Embedded, encrypted database with tiered cache
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::sync::Arc;

type RawAction<V> = Option<V>;
type Action<V> = Option<Arc<V>>;

fn store<V>(value: impl Into<Arc<V>>) -> Action<V> {
    Some(value.into())
}

pub(crate) mod list;
pub(crate) mod map;