public static CellStreamSink <T> CreateStreamSink <T>(Func <T, T, T> coalesce) => CellInternal.CreateStreamSinkImpl(coalesce);
public static CellStreamSink <T> CreateStreamSink <T>() => CellInternal.CreateStreamSinkImpl <T>();
public static CellSink <T> CreateSink <T>(T initialValue, Func <T, T, T> coalesce) => CellInternal.CreateSinkImpl(initialValue, coalesce);
public static CellSink <T> CreateSink <T>(T initialValue) => CellInternal.CreateSinkImpl(initialValue);
public static Cell <T> ConstantLazy <T>(Lazy <T> value) => CellInternal.ConstantLazyImpl(value);
public static Cell <T> Constant <T>(T value) => CellInternal.ConstantImpl(value);