Comparison for equality.
(self, other)
| 810 | return self._cpp_object.contains(V._cpp_object) # type: ignore |
| 811 | |
| 812 | def __eq__(self, other): |
| 813 | """Comparison for equality.""" |
| 814 | return super().__eq__(other) and self._cpp_object == other._cpp_object |
| 815 | |
| 816 | def __ne__(self, other): |
| 817 | """Comparison for inequality.""" |
nothing calls this directly
no outgoing calls
no test coverage detected