dark-std 0.2.16

dark-std is an Implementation of asynchronous containers build on tokio. It uses a read-write separation design borrowed from Golang
Documentation
1
2
3
4
5
6
7
8
9
use dark_std::defer;

#[test]
pub fn test_defer() {
    let a = 0;
    defer!(|| {
        println!("{}", a);
    });
}