コード例 #1
0
ファイル: Either.cs プロジェクト: JamesTryand/language-ext
 /// <summary>
 /// Equality override
 /// </summary>
 public bool Equals(Either <L, R> other) =>
 IsRight
         ? other.Equals(RightValue)
         : other.Equals(LeftValue);