1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![feature(drain_filter)]
extern crate core;

#[cfg(feature = "math")]
pub mod average;
pub mod create;
pub mod filter;
pub mod flatten;
pub mod from_iter;
pub mod group_by;
pub mod map;
pub mod merge;
pub mod observable;
pub mod observer;
pub mod reduce;
pub mod scheduler;
#[cfg(feature = "recurring")]
pub mod sliding_window;
pub mod subscribe_on;
pub mod utils;