示例#1
0
文件: Cell.cs 项目: thalesians/sodium
 public static CellStreamSink <T> CreateStreamSink <T>(Func <T, T, T> coalesce) =>
 CellInternal.CreateStreamSinkImpl(coalesce);
示例#2
0
文件: Cell.cs 项目: thalesians/sodium
 public static CellStreamSink <T> CreateStreamSink <T>() => CellInternal.CreateStreamSinkImpl <T>();
示例#3
0
文件: Cell.cs 项目: thalesians/sodium
 public static CellSink <T> CreateSink <T>(T initialValue, Func <T, T, T> coalesce) =>
 CellInternal.CreateSinkImpl(initialValue, coalesce);
示例#4
0
文件: Cell.cs 项目: thalesians/sodium
 public static CellSink <T> CreateSink <T>(T initialValue) => CellInternal.CreateSinkImpl(initialValue);
示例#5
0
文件: Cell.cs 项目: thalesians/sodium
 public static Cell <T> ConstantLazy <T>(Lazy <T> value) => CellInternal.ConstantLazyImpl(value);
示例#6
0
文件: Cell.cs 项目: thalesians/sodium
 public static Cell <T> Constant <T>(T value) => CellInternal.ConstantImpl(value);