call method

T call()

Retrieve the value of the cell.

The difference between this method and the value property is that if this method is called inside a value computation function of a computational cell which tracks its arguments at runtime, this cell will automatically be added as an argument of the computational cell such that its value is recomputed whenever the value of this cell changes.

Implementation

T call() {
  ComputeArgumentsTracker.trackArgument(this);
  return value;
}