Package com.ibm.wala.util.collections
Class MapIterator<X,Y>
- java.lang.Object
-
- com.ibm.wala.util.collections.MapIterator<X,Y>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
static <X,Y>
Set<Y>map(Function<X,Y> f, Collection<X> i)
static <X,Y>
Iterator<Y>map(Function<X,Y> f, Iterator<X> i)
Y
next()
void
remove()
String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
remove
public void remove() throws UnsupportedOperationException
- Specified by:
remove
in interfaceIterator<X>
- Throws:
UnsupportedOperationException
-
map
public static <X,Y> Set<Y> map(Function<X,Y> f, Collection<X> i)
-
-