//! Iterator types for the `AdjacencyArray`.
usecrate::{EdgeId, IdType, NodeId};/// An iterator over the nodes of an `AdjacencyArray`.
pubtypeAdjacencyArrayNodeIdIterator=std::iter::Map<std::ops::Range<IdType>, fn(IdType)-> NodeId>;/// An iterator over the edges of an `AdjacencyArray`.
pubtypeAdjacencyArrayEdgeIdIterator=std::iter::Map<std::ops::Range<IdType>, fn(IdType)-> EdgeId>;