1 2 3 4 5 6 7 8 9 10 11 12
//! Miscellaneous tools used by the rest of egui. pub mod cache; pub(crate) mod fixed_cache; mod history; pub mod id_type_map; pub mod undoer; pub use history::History; pub use id_type_map::IdTypeMap; pub use epaint::util::{hash, hash_with};