DataNode<T> class abstract

Abstract base class for all DataNode types. It stores data of type argument T. Concrete instances can be shared across multiple DataNode instances by reference in order to compose operations that read/write from the same data.

Inheritance

Constructors

DataNode(T data)
Constructs a DataNode holding the specified argument data.

Properties

data ↔ T
The data contained by the DataNode instance.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Operators

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