(zelf: PyRef<Self>, n: isize, vm: &VirtualMachine)
| 150 | } |
| 151 | |
| 152 | fn irepeat(zelf: PyRef<Self>, n: isize, vm: &VirtualMachine) -> PyResult<PyRef<Self>> { |
| 153 | zelf.borrow_vec_mut().imul(vm, n)?; |
| 154 | Ok(zelf) |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | #[derive(FromArgs, Default, Traverse)] |
nothing calls this directly
no test coverage detected