(obj: T, position: usize)
| 45 | |
| 46 | impl<T> PositionIterInternal<T> { |
| 47 | pub const fn new(obj: T, position: usize) -> Self { |
| 48 | Self { |
| 49 | status: IterStatus::Active(obj), |
| 50 | position, |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | pub fn set_state<F>(&mut self, state: PyObjectRef, f: F, vm: &VirtualMachine) -> PyResult<()> |
| 55 | where |
nothing calls this directly
no test coverage detected