v2.1.30
Introducing Subscript Functions
The project up to this version:
- Name: Functions are called Subscript Functions (a.k.a. Reactive Contexts). Conversely, future versions are planned to be called Graph Functions.
- Runtimes: Functions are objects with static state (i.e.: runtime state is bound to the function object itself, refreshed on each call). Conversely, future versions are planned to be constructors with instance-based state (i.e.: runtime state is bound to a new implicit instance of the function, created on each call).
- API: Function object have a
.thread()
method for graph-based execution. Conversely, future versions are planned to return the equivalent of the.thread()
method from the constructor.