1// SPDX-License-Identifier: MPL-2.0 2 3//! Utility types and methods. 4 5mod either; 6pub mod id_set; 7mod macros; 8pub(crate) mod ops; 9pub(crate) mod range_alloc; 10 11pub use either::Either;