コード例 #1
0
ファイル: Category.cs プロジェクト: ibrahim-elsakka/Verex
 public Pattern UnionAndIntersect(Category unionWithCat, Category intersectWithCat)
 => Patterns.AssertNextIs(this | unionWithCat) + intersectWithCat;
コード例 #2
0
ファイル: Category.cs プロジェクト: ibrahim-elsakka/Verex
 public Pattern Intersect(Category cat)
 => Patterns.AssertNextIs(this) + cat;