Uses of Interface
rcf.core.util.iterator.ImmutableIterator

Packages that use ImmutableIterator
rcf.core.concurrent.events Includes support for a highly abstract, and powerful event model. 
rcf.core.util.groups TODO: Javadoc Includes the Pair and Triple objects, which are essentially fixed-length type-parameterized ADTs. 
rcf.core.util.iterator TODO: Javadoc An Iterator is a Position which can be moved over whatever spatial relationship it is aware of. 
 

Uses of ImmutableIterator in rcf.core.concurrent.events
 

Methods in rcf.core.concurrent.events that return ImmutableIterator
<E extends Event>
ImmutableIterator<?>
EventSyndicate.add(Reference<EventSink<? super E>> _sinkReference, Class<E> _class)
          Register an event sink to receive all of the events from the EventSource for this syndicate, which are assignable to the specified class.
<E extends Event>
ImmutableIterator<?>
EventSyndicate.remove(Reference<EventSink<? super E>> _sinkReference, Class<E> _class)
          Deregister an event sink to stop receiving events from the EventSource for this syndicate.
 

Uses of ImmutableIterator in rcf.core.util.groups
 

Classes in rcf.core.util.groups that implement ImmutableIterator
static class ImmutablePair.Iterator<A,B>
          TODO: Javadoc Binds a pair of immutable iterators, allowing them to be iterated in tandem.
static class ImmutableSingleton.Iterator<A>
          TODO: Javadoc Wrap a single immutable iterator, create an immutable iterator over singletons of elements.
static class ImmutableTriple.Iterator<A,B,C>
          TODO: Javadoc Binds a triple of immutable iterators, allowing them to be iterated simultaneously.
static class Pair.Iterator<A,B>
          TODO: Javadoc Binds a pair of iterators, allowing them to be iterated in tandem.
static class Singleton.Iterator<A>
          TODO: Javadoc Wrap a single iterator, create an iterator over singletons of elements.
static class Triple.Iterator<A,B,C>
          TODO: Javadoc Binds a triple of iterators, allowing them to be iterated simultaneously.
 

Uses of ImmutableIterator in rcf.core.util.iterator
 

Subinterfaces of ImmutableIterator in rcf.core.util.iterator
 interface Iterator<T>
          TODO: Javadoc A combination of the ImmutableIterator and Position interfaces which supports iteration over an Iterable.
 

Methods in rcf.core.util.iterator that return ImmutableIterator
 ImmutableIterator<T> ImmutableIterator.copy()
          TODO: Javadoc Return a new iterator which is currently at the same position as this iterator.
 ImmutableIterator<T> ImmutableIterable.makeNative(ImmutablePosition<T> p)
          TODO: Javadoc Convert the specified position into an iterator native to this iterable.