gleaph/node

Types

The node of a graph has an id and can hold a value.

pub type Node(value_t) {
  Node(id: Int, value: option.Option(value_t))
}

Constructors

The id of a node is represented by an integer.

pub type NodeId =
  Int
Search Document