Beispiel #1
0
 public static Cond <A, B> Then <A, B>(this Cond <A, A> self, B value) =>
 self.Select(_ => value);
Beispiel #2
0
 public static Cond <A, B> Then <A, B>(this Cond <A, A> self, Func <B> f) =>
 self.Select(_ => f());
Beispiel #3
0
 public static CondAsync <A, B> Then <A, B>(this Cond <A, A> self, Task <B> value) =>
 self.Select(_ => value);