コード例 #1
0
ファイル: Util.cs プロジェクト: zvonimir/corral
 public static bool EqSnd(Duple <T1, T2> d1, Duple <T1, T2> d2)
 {
     return(d1.snd.Equals(d2.snd));
 }
コード例 #2
0
ファイル: Util.cs プロジェクト: zvonimir/corral
 public static bool EqFst(Duple <T1, T2> d1, Duple <T1, T2> d2)
 {
     return(d1.fst.Equals(d2.fst));
 }