Yog.Functional.Model.Context (YogEx v0.98.0)

Copy Markdown View Source

A node context containing the node's identity, label, and adjacency information.

Summary

Types

edges()

@type edges() :: %{required(node_id()) => label()}

label()

@type label() :: any()

node_id()

@type node_id() :: any()

t()

@type t() :: %Yog.Functional.Model.Context{
  id: node_id(),
  in_edges: edges(),
  label: label(),
  out_edges: edges()
}