(&self, other: &[u8])
| 313 | } |
| 314 | |
| 315 | pub fn add(&self, other: &[u8]) -> Vec<u8> { |
| 316 | self.elements.py_add(other) |
| 317 | } |
| 318 | |
| 319 | pub fn contains(&self, needle: Either<Self, PyIntRef>, vm: &VirtualMachine) -> PyResult<bool> { |
| 320 | Ok(match needle { |
no test coverage detected