All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy