예제 #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);