Create a computed cell. Do not use cell.value
inside the computation,
always us $(cell)
to unwrap cells to properly track dependencies.
A function that can unwrap cells using $(cell)
and
compute a resulting value.
A cell that computes its value based on the provided computation function.
Utility function for creating computational cells that automatically track dependencies. Use zipWith if you want to explicitly specify dependencies. The same function is used both to unwrap cells and to create computed cells.