alopt 1.0.0

a Rust crate providing efficient synchronization primitives that integrate Option into their design.
Documentation
1
2
3
4
5
6
7
8
use criterion::{Criterion, black_box, criterion_group, criterion_main};

fn std_rwlock(c: &mut Criterion) {
    todo!()
}

criterion_group!(benches, std_rwlock);
criterion_main!(benches);