You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of now, one has to write something like x.union(y).subtract(x.intersect(y)) which is not ideal from a performance perspective.
The text was updated successfully, but these errors were encountered:
mkovaxx
changed the title
Provide Shape::symmetric_difference(&Self, &Shape)
Provide Shape::symmetric_difference(&Self, &Shape) -> Shape
Jan 15, 2025
mkovaxx
changed the title
Provide Shape::symmetric_difference(&Self, &Shape) -> Shape
Provide Shape::symmetric_difference(&Self, &Shape) -> BooleanShape
Jan 15, 2025
mkovaxx
changed the title
Provide Shape::symmetric_difference(&Self, &Shape) -> BooleanShape
fn Shape::symmetric_difference(&Self, &Shape) -> BooleanShape
Jan 15, 2025
mkovaxx
changed the title
fn Shape::symmetric_difference(&Self, &Shape) -> BooleanShape
fn Shape::symmetric_difference(&self, &Shape) -> BooleanShape
Jan 15, 2025
Aka. exclusive-or, XOR, etc.
As of now, one has to write something like
x.union(y).subtract(x.intersect(y))
which is not ideal from a performance perspective.The text was updated successfully, but these errors were encountered: