Skip to content

v2.1.30

Compare
Choose a tag to compare
@ox-harris ox-harris released this 13 Oct 07:01
· 467 commits to master since this release

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.