Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#next.
(cls: Any)
| 144 | return cls.__next__() |
| 145 | |
| 146 | def iter(cls: Any) -> Any: |
| 147 | """Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#next.""" |
| 148 | return cls.__iter__() |