VCollections – Release 1
Interface org.violetlib.collections.IIterator
Deprecated: ShowHide
-
-
|
Modifier and Type |
Static Method and Description |
|
filter |
static <V> IIterator<V> filter(Iterator<V> it)
Create an IIterator from an Iterator by filtering any nulls it returns.
static <V> IIterator<V> filter(Iterator<V> it)
-
Create an IIterator from an Iterator by filtering any nulls it returns.
- Parameters:
it - The source iterator.
|
|
from |
static <V> IIterator<V> from(Iterator<V> it)
Create an IIterator from an Iterator that does not return null.
-
Create an IIterator from an Iterator that does not return null.
- Parameters:
it - The source iterator, which must not return null.
|