class documentation

class BabelIterator(ABC, Generic[T]):

Known subclasses: babelnet.iterators.iter_impl.BabelIteratorImpl

View In Hierarchy

Abstract iterator over BabelNet's content

Method has_next function that returns true if the iterator has still another element to continue the iteration with.
Method __iter__ Undocumented
Method __next__ Undocumented
@abstractmethod
def has_next(self):

function that returns true if the iterator has still another element to continue the iteration with.

Returns
booltrue if there is another element, false otherwise
@abstractmethod
def __iter__(self):

Undocumented

Returns
Iterator[T]Undocumented