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