pub trait WithPostOrderPath<IdN>: WithPath<IdN> + WithPostOrderOffsets {
    type ItPath: Iterator<Item = (Self::Idx, IdN)>;

    // Required method
    fn iter_offsets_and_parents(&self) -> Self::ItPath;
}
Expand description

test invariants with assert_invariants_post

Required Associated Types§

source

type ItPath: Iterator<Item = (Self::Idx, IdN)>

Required Methods§

Implementors§

source§

impl<'a, IdN: NodeId + Eq + Copy, Idx: PrimInt> WithPostOrderPath<IdN> for ExploreStructuralPositions<'a, IdN, Idx>

§

type ItPath = IterOffsetsNodes<'a, IdN, Idx>