lzfse_rust 0.2.1

A pure Rust LZFSE library.
Documentation
1
2
3
4
5
6
7
8
/// # Safety
///
/// * `RING_SIZE.is_power_of_two()`
/// * `WIDE <= RING_SIZE`
/// * `RING_SIZE <= 0x4000_0000`
pub unsafe trait RingSize {
    const RING_SIZE: u32;
}