combine-latest 1.0.0

Combines two streams into a new stream which yields tuples with the latest values from each input stream
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod stream_combiners;
pub use stream_combiners::{combine_latest, combine_latest_optional};

#[cfg(test)]
mod tests {
    // use super::*;

    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}