//! Merkle Mountain Range (MMR) data structures.
/// Returns the number of nodes represented by a forest bitmask.
///
/// `mask` is a forest-leaf mask (same encoding as [`Forest::num_leaves()`]): each set bit denotes
/// one peak/tree with leaf count `2^bit_position`.
// REEXPORTS
// ================================================================================================
pub use MmrDelta;
pub use MmrError;
pub use Forest;
pub use Mmr;
pub use InOrderIndex;
pub use PartialMmr;
pub use MmrPeaks;
pub use ;