Exemplo n.º 1
0
 public T Match <T>(T trueCase, T falseCase)
 => b.Match(falseCase, trueCase);
Exemplo n.º 2
0
 public T Match <T>(T trueCase, T falseCase)
 {
     return(b.Match(falseCase, trueCase));
 }
Exemplo n.º 3
0
 public T Match <T>(T trueCase, T falseCase)
 {
     return(x.Match(trueCase, y.Match(trueCase, falseCase)));
 }
Exemplo n.º 4
0
 public static bool ToBool(this IChurchBoolean b)
 {
     return(b.Match(true, false));
 }
Exemplo n.º 5
0
 public T Match <T>(T trueCase, T falseCase)
 => x.Match(trueCase, y.Match(trueCase, falseCase));
Exemplo n.º 6
0
 public static bool ToBool(this IChurchBoolean b)
 => b.Match(true, false);