Return the current item. Equivalent to the item that will be returned next time :meth:`next` is called.
(self)
| 701 | |
| 702 | @property |
| 703 | def current(self) -> t.Any: |
| 704 | """Return the current item. Equivalent to the item that will be |
| 705 | returned next time :meth:`next` is called. |
| 706 | """ |
| 707 | return self.items[self.pos] |
| 708 | |
| 709 | def next(self) -> t.Any: |
| 710 | """Return the current item, then advance :attr:`current` to the |
no outgoing calls
no test coverage detected