Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Delegate: RT.Util.WorkNode<T>

Declaration

delegate RT.Util.WorkStep<T> RT.Util.WorkNode<T>(
    T previousSubresult
)

Summary

Provides a delegate to specify work to be executed on an unlimited call stack. See CustomCallStack.Run<T>(WorkNode<T>) for details.

Parameters

TpreviousSubresult The result of the work step last returned by this same delegate.

Returns

The next step of computation (which is either a WorkStep<T>.Return or a WorkStep<T>.Call).

Generic type parameters

T Type of result to compute.