new prelude re-exports

This commit is contained in:
YK 2024-11-19 23:09:45 +03:00
parent 603f07c784
commit ea06d5c748

View File

@ -1,4 +1,7 @@
pub use crate::utils::*; pub use crate::utils::*;
pub use anyhow::Error; pub use anyhow::Error;
pub use itertools::Itertools; pub use itertools::Itertools;
pub use std::collections::{ HashMap as M, HashSet as S }; pub use std::{
collections::{ HashMap as M, HashSet as S },
cmp::Ordering as Or,
};