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