//! Maps that only store entries with nonzero values.
//!
//! These types are recommended whenever it is important that the common value is zero, even though
//! most numeric types' [Default] implementations also yield a zero value.
use Zero;
use crate::;
/// A hash map that only stores entries with non-zero values. All other keys are presumed to be
/// associated with the zero value.
pub type NonZeroHashMap<K, V> = ;
/// An ordered map that only stores entries with non-zero values. All other keys are presumed to be
/// associated with the zero value.
pub type NonZeroBTreeMap<K, V> = ;
/// A [commonality](Commonality) based on the [Zero] trait.
///
/// A [TotalHashMap] or [TotalBTreeMap] using this commonality only stores entries with nonzero
/// values.
);