More<T extends Object?> class
final
Represents pending computation in the trampoline pattern.
Each More contains a thunk (lazy function) that will be executed to produce the next Bounce. This defers execution and prevents direct recursion, allowing the trampoline loop to handle deep stacks.
Example:
// Represent pending recursive computation
return More(() => nextBounce(n - 1));
// Instead of: return nextBounce(n - 1);
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