o3 0.7.0

shared-nothing primitives
Documentation
1
2
3
4
5
6
7
use o3::buffer::{Bytes, Leased};

fn slice(bytes: Bytes<Leased>) {
    let _ = bytes.slice(0..0);
}

fn main() {}