ach-lazy 0.2.4

Atomic Channel
Documentation
1
2
3
4
5
6
7
use ach_lazy::Lazy;

#[test]
fn base() {
    static CELL: Lazy<usize> = Lazy::new(|| 1);
    assert_eq!(*CELL, 1);
}