Versions in this module Expand all Collapse all v0 v0.0.1 Aug 20, 2021 Changes in this version + type Edge struct + func (e *Edge) From() ggraph.Node + func (e *Edge) ReversedEdge() ggraph.Edge + func (e *Edge) To() ggraph.Node + type Graph struct + func NewGraph(g *graph.Graph) *Graph + func (g *Graph) Edge(uid, vid int64) ggraph.Edge + func (g *Graph) EdgeBetween(xid, yid int64) ggraph.Edge + func (g *Graph) From(id int64) ggraph.Nodes + func (g *Graph) HasEdgeBetween(xid, yid int64) bool + func (g *Graph) Node(id int64) ggraph.Node + func (g *Graph) Nodes() ggraph.Nodes + type Node struct + func (n *Node) ID() int64 + type Nodes struct + func (n *Nodes) Len() int + func (n *Nodes) Next() bool + func (n *Nodes) Node() ggraph.Node + func (n *Nodes) Reset()