Node<T> class abstract

An node in a graph. The edges may be interlinked or not. This interface is used for generalized algorithms which may work for TreeNodes or GraphNodes.

Implementers

Constructors

Node()

Properties

edges Iterable<Node<T>>
The edges of this Node. They may be interlinked.
no setter
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value → T
The value this Node represents.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited