getCell<T> method

T getCell<T>(
  1. AsyncCellHandle<T> cell
)

Read cell's value synchronously, recording it as a dependency.

Implementation

T getCell<T>(AsyncCellHandle<T> cell) {
  _slot._trackDep(cell);
  return cell.get();
}