Edge

An edge. Because the graph must be bipartite, an edge can never connect two vertices of the same type.

  1. struct Edge(From, To)
  2. struct Edge(From, To, Data)

Members

Functions

opCmp
int opCmp(typeof(this) rhs)

Compares two edges.

opEquals
bool opEquals(typeof(this) rhs)

Returns true if both edges are the same.

Variables

data
Data data;
Undocumented in source.
from
From from;
Undocumented in source.
to
To to;
Undocumented in source.

Meta