コード例 #1
0
ファイル: Tristate.cs プロジェクト: ADRC4-2019-2020/Lith
 public static bool Possible(this Tristate v) => v != Tristate.No;
コード例 #2
0
ファイル: Tristate.cs プロジェクト: ADRC4-2019-2020/Lith
 public static bool Impossible(this Tristate v) => v == Tristate.No;
コード例 #3
0
ファイル: Tristate.cs プロジェクト: ADRC4-2019-2020/Lith
 public static bool IsMaybe(this Tristate v) => v == Tristate.Maybe;
コード例 #4
0
ファイル: Tristate.cs プロジェクト: ADRC4-2019-2020/Lith
 public static bool IsNo(this Tristate v) => v == Tristate.No;
コード例 #5
0
ファイル: Tristate.cs プロジェクト: ADRC4-2019-2020/Lith
 public static bool IsYes(this Tristate v) => v == Tristate.Yes;