Esempio n. 1
0
 public FA Substract(FA other, bool cloned = false)
 {
     return(Operations.Substract(CloneIf(cloned), other.CloneIf(cloned)));
 }
Esempio n. 2
0
 public FA Union(FA other, bool cloned = false)
 {
     return(Operations.Union(CloneIf(cloned), other.CloneIf(cloned)));
 }
Esempio n. 3
0
 public FA Intersect(FA other, bool cloned = false)
 {
     return(Operations.Intersect(CloneIf(cloned), other.CloneIf(cloned)));
 }
Esempio n. 4
0
 public FA Difference(FA other, bool cloned = false)
 {
     return(Operations.Difference(CloneIf(cloned), other.CloneIf(cloned)));
 }