continuwuity/src/core/utils/stream/mod.rs
Jason Volk 8ab825b12c add stream parallelism extension combinators
Signed-off-by: Jason Volk <jason@zemos.net>
2025-01-21 20:43:38 +00:00

32 lines
726 B
Rust

mod band;
mod broadband;
mod cloned;
mod expect;
mod ignore;
mod iter_stream;
mod ready;
mod tools;
mod try_broadband;
mod try_parallel;
mod try_ready;
mod try_tools;
mod try_wideband;
mod wideband;
pub use band::{
automatic_amplification, automatic_width, set_amplification, set_width, AMPLIFICATION_LIMIT,
WIDTH_LIMIT,
};
pub use broadband::BroadbandExt;
pub use cloned::Cloned;
pub use expect::TryExpect;
pub use ignore::TryIgnore;
pub use iter_stream::IterStream;
pub use ready::ReadyExt;
pub use tools::Tools;
pub use try_broadband::TryBroadbandExt;
pub use try_parallel::TryParallelExt;
pub use try_ready::TryReadyExt;
pub use try_tools::TryTools;
pub use try_wideband::TryWidebandExt;
pub use wideband::WidebandExt;