Stack<T> class
Stack data structure for managing recursive operations.
Stack is used internally by the reactive system to manage recursive traversal of the dependency graph during updates.
Example:
final link = Link(version: 0, dep: ReactiveNode(flags: 0), sub: ReactiveNode(flags: 0));
var stack = Stack(value: link);
stack = Stack(value: link.nextSub, prev: stack);
Constructors
Properties
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