//! Typed lattice index.
/// Opaque index into a [`crate::Lattice`]. Constructed only by the crate;
/// callers receive these from [`crate::Lattice::bracket`] or
/// `Translation::resolve` and pattern-match.
#[derive(Debug, Clone, Copy, Eq, Hash, PartialEq)]pubstructAnchor(usize);implAnchor{pubconstfnnew(idx:usize)->Self{Self(idx)}/// Index into the originating lattice.
pubconstfnidx(&self)->usize{self.0}}