[go: up one dir, main page]

futures 0.3.23

An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use futures::executor::block_on;
use futures::future::{self, FutureExt};

#[test]
fn smoke() {
    let mut counter = 0;

    {
        let work = future::ready::<i32>(40).inspect(|val| {
            counter += *val;
        });
        assert_eq!(block_on(work), 40);
    }

    assert_eq!(counter, 40);
}