You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It’d be nice if there were a way to opt-in to getting a promise of a cell’s next value. This would allow two things:
A cell could start running before a cell it references has fulfilled. This would allow some operations to proceed in parallel, without needing to break these operations out into another cell.
A cell could handle an error if a cell it references errors. For example, promiseof foo.catch(() => "default") or try { return await promiseof foo; } catch { return "default"; }. Related Cell level error handling runtime#286.
It’d be nice if there were a way to opt-in to getting a promise of a cell’s next value. This would allow two things:
A cell could start running before a cell it references has fulfilled. This would allow some operations to proceed in parallel, without needing to break these operations out into another cell.
A cell could handle an error if a cell it references errors. For example,
promiseof foo.catch(() => "default")ortry { return await promiseof foo; } catch { return "default"; }. Related Cell level error handling runtime#286.