comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/util/Either.cs @ 0:dec15de2c6ff

first commit
author Kazuma
date Tue, 21 Jun 2016 17:11:12 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dec15de2c6ff
1 
2 public interface Either<A,B> {
3 A a();
4 bool isA();
5 B b();
6 bool isB();
7 }