Yog.FSharp
Getting Started Examples API Reference GitHub

Graph<'nodeData, 'edgeData> Type

A simple graph data structure that can be directed or undirected.

  • 'nodeData: The type of data stored at each node
  • 'edgeData: The type of data (usually weight) stored on each edge

Record fields

Record Field Description

InEdges

Full Usage: InEdges

Field type: Map<NodeId, Map<NodeId, 'edgeData>>
Field type: Map<NodeId, Map<NodeId, 'edgeData>>

Kind

Full Usage: Kind

Field type: GraphType
Field type: GraphType

Nodes

Full Usage: Nodes

Field type: Map<NodeId, 'nodeData>
Field type: Map<NodeId, 'nodeData>

OutEdges

Full Usage: OutEdges

Field type: Map<NodeId, Map<NodeId, 'edgeData>>
Field type: Map<NodeId, Map<NodeId, 'edgeData>>