コード例 #1
0
ファイル: SetDomain.cs プロジェクト: kleopatra999/rudder
 public void Join(SetDomain <T> other)
 {
     if (other.IsTop)
     {
         SetTop();
     }
     if (!IsTop)
     {
         AddRange(other.Elements);
     }
 }
コード例 #2
0
ファイル: SetDomain.cs プロジェクト: kleopatra999/rudder
 public bool Contains(SetDomain <T> other)
 {
     return(Contains(other.Elements));
 }