cell<T> method

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

Create a mutable input cell (the synchronous input layer).

Implementation

AsyncCellHandle<T> cell<T>(T value) => AsyncCellHandle<T>(this, value);