GraphMap type
A graph as adjacency lists: each vertex mapped to the vertices it points at.
Signature:
export type GraphMap<T> = Map<T, T[]>;
Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.