com.ajjpj.afoundation.collection.immutable.ALongMapIterator Maven / Gradle / Ivy
The newest version!
package com.ajjpj.afoundation.collection.immutable;
/**
* This is an iterator for {@link ALongHashMap}s, allowing efficient access.
*
* @author arno
*/
public interface ALongMapIterator extends AMapEntry {
boolean hasNext();
void next();
long getLongKey();
}