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

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

test invariants with assert_invariants_pre

Required Associated Types§

source

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

Required Methods§

Implementors§