(&self, _py: Python)
| 60 | /// This is equivalent to Python `len(self)` |
| 61 | #[inline] |
| 62 | pub fn len(&self, _py: Python) -> usize { |
| 63 | unsafe { ffi::PySet_Size(self.0.as_ptr()) as usize } |
| 64 | } |
| 65 | |
| 66 | /// Determine if the set contains the specified value. |
| 67 | /// This is equivalent to the Python expression `value in self`. |
no test coverage detected