Beispiel #1
0
 public static CellStreamSink <T> CreateStreamSink <T>(Func <T, T, T> coalesce) =>
 CellInternal.CreateStreamSinkImpl(coalesce);
Beispiel #2
0
 public static CellStreamSink <T> CreateStreamSink <T>() => CellInternal.CreateStreamSinkImpl <T>();
Beispiel #3
0
 public static CellSink <T> CreateSink <T>(T initialValue, Func <T, T, T> coalesce) =>
 CellInternal.CreateSinkImpl(initialValue, coalesce);
Beispiel #4
0
 public static CellSink <T> CreateSink <T>(T initialValue) => CellInternal.CreateSinkImpl(initialValue);
Beispiel #5
0
 public static Cell <T> ConstantLazy <T>(Lazy <T> value) => CellInternal.ConstantLazyImpl(value);
Beispiel #6
0
 public static Cell <T> Constant <T>(T value) => CellInternal.ConstantImpl(value);