Contents:
Bases: object
object
The iterator for smart contracts.
Gets the element in the collection at the current position of the iterator.
the element in the collection at the current position of the iterator
Any
Advances the iterator to the next element of the collection.
>>> from boa3.builtin.interop import storage ... iterator = storage.find(b'prefix') ... iterator.next() True
true if it advanced, false if there isn’t a next element
bool