NodeIO<T> class abstract

Interface for an element that have input and output nodes. See Graph and Node.

Implementers

Constructors

NodeIO()

Properties

hashCode int
The hash code for this object.
no setterinherited
inputs List<Node<T>>
Returns the input Nodes
no setter
outputs List<Node<T>>
Returns the output Nodes
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addInput(T nodeValue) Node<T>?
Adds an unique input node with nodeValue. Returns the added Node if not add yet.
addOutput(T nodeValue) Node<T>?
Adds an unique output node with nodeValue. Returns the added Node if not add yet.
containsInput(T nodeValue) bool
Returns true if inputs contains a Node with nodeValue
containsOutput(T nodeValue) bool
Returns true if outputs contains a Node with nodeValue
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reset() → void
Resets this element for a path scan.
toString() String
A string representation of this object.
inherited

Operators

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