Skip to main content

GenericPyIterator

No overview available.

Attributes

AttributeTypeDescription
objPy< PyAny >The underlying Python object being iterated over.
iterPy< PyIterator >The active Python iterator instance derived from the source object.
indexusizeThe current zero-based position of the iterator within the sequence.

Constructor

Signature

def GenericPyIterator(
obj: Py< PyAny >,
iter: Py< PyIterator >,
index: usize
) - > null

Parameters

NameTypeDescription
objPy< PyAny >The underlying Python object to be iterated.
iterPy< PyIterator >The Python iterator instance associated with the object.
indexusizeThe starting index for the iteration process.

Signature

def GenericPyIterator(
obj: Py< PyAny >,
iter: Py< PyIterator >,
index: usize
) - > null

Parameters

NameTypeDescription
objPy< PyAny >The source Python object being iterated over.
iterPy< PyIterator >The underlying Python iterator object used to fetch elements.
indexusizeThe starting positional index for the iteration sequence.