Fuse self and other.
(self: T, other: "Sketch")
| 1222 | return self |
| 1223 | |
| 1224 | def __add__(self: T, other: "Sketch") -> T: |
| 1225 | """ |
| 1226 | Fuse self and other. |
| 1227 | """ |
| 1228 | |
| 1229 | res = _sanitize_for_bool(self.val()) + _sanitize_for_bool(other.val()) |
| 1230 | |
| 1231 | return self.__class__(obj=_to_compound(res)) |
| 1232 | |
| 1233 | def __sub__(self: T, other: "Sketch") -> T: |
| 1234 | """ |
nothing calls this directly
no test coverage detected