Beispiel #1
0
 public ICube[] Except(ICoverage excptCov)
 {
     if (Bitness != excptCov.Bitness)
     {
         throw new ArgumentException();
     }
     return(Cubes.Except(excptCov.ToCubesArray()).ToArray());
 }
Beispiel #2
0
 public ICube[] Intersection(ICoverage intrsctCov)
 {
     if (Bitness != intrsctCov.Bitness)
     {
         throw new ArgumentException();
     }
     return(Cubes.Intersect(intrsctCov.ToCubesArray()).ToArray());
 }