Versions in this module Expand all Collapse all v1 v1.14.2 Aug 2, 2025 Changes in this version + type Factory interface + New func() Graph + type Graph interface + Add func(vertex ids.ID) + AddEdge func(u, v ids.ID) + HasEdge func(u, v ids.ID) bool + Len func() int + Neighbors func(vertex ids.ID) set.Set[ids.ID] + Remove func(vertex ids.ID) + RemoveEdge func(u, v ids.ID) + Vertices func() set.Set[ids.ID] + type Topological interface + HasCycle func() bool + StronglyConnectedComponents func() []set.Set[ids.ID] + TopologicalSort func() ([]ids.ID, error) + type Tx interface + Bytes func() []byte + ID func() ids.ID + Inputs func() set.Set[ids.ID] + Outputs func() set.Set[ids.ID] Other modules containing this package github.com/luxfi/node/v2