exception<U> method

ValueCell<U> exception<U>()

Create a cell that throws this is an exception.

Implementation

ValueCell<U> exception<U>() => apply((value) => throw value,
  key: _ExceptionCellKey<T>(this)
);