rawdb 0.10.3

Single-file, low-level and space efficient storage engine with filesystem-like API
Documentation
#[inline(always)]
pub fn likely(b: bool) -> bool {
    if !b {
        cold();
    }
    b
}

#[inline(always)]
pub fn unlikely(b: bool) -> bool {
    if b {
        cold();
    }
    b
}

#[inline(always)]
#[cold]
fn cold() {}