compio_io/util/mod.rs
1//! IO related utilities functions for ease of use.
2mod copy;
3pub use copy::*;
4
5mod take;
6pub use take::Take;
7
8mod null;
9pub use null::{Null, null};
10
11mod repeat;
12pub use repeat::{Repeat, repeat};
13
14mod internal;
15pub(crate) use internal::*;
16
17pub mod split;
18pub use split::Splittable;