getCell<T> method
Read cell's value synchronously, recording it as a dependency.
Implementation
T getCell<T>(AsyncCellHandle<T> cell) {
_slot._trackDep(cell);
return cell.get();
}
Read cell's value synchronously, recording it as a dependency.
T getCell<T>(AsyncCellHandle<T> cell) {
_slot._trackDep(cell);
return cell.get();
}