Files
orchid/src/utils/mod.rs

33 lines
837 B
Rust

mod cache;
mod delete_cell;
mod event_poller;
mod get_or_default;
mod iter_find;
pub mod never;
pub mod pushed;
mod rc_to_owned;
mod replace_first;
mod side;
mod split_max_prefix;
mod string_from_charset;
mod substack;
mod take_with_output;
pub mod thread_pool;
mod unwrap_or;
pub use cache::Cache;
pub use rc_to_owned::{map_rc, rc_to_owned};
pub use replace_first::replace_first;
pub use side::Side;
pub use split_max_prefix::split_max_prefix;
pub use substack::{Stackframe, Substack, SubstackIterator};
pub(crate) use unwrap_or::unwrap_or;
pub mod iter;
pub use delete_cell::DeleteCell;
pub use event_poller::{PollEvent, Poller};
pub use get_or_default::{get_or_default, get_or_make};
pub use iter::BoxedIter;
pub use iter_find::iter_find;
pub use string_from_charset::string_from_charset;
pub use take_with_output::take_with_output;