
clojure.data.int_map.ISet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data.int-map Show documentation
Show all versions of data.int-map Show documentation
A map optimized for integer keys
package clojure.data.int_map;
import java.util.BitSet;
import java.util.Collection;
import java.util.Iterator;
public interface ISet {
ISet add(long epoch, long val);
ISet remove(long epoch, long val);
boolean contains(long val);
ISet range(long epoch, long min, long max);
Iterator elements(long offset, boolean reverse);
long count();
BitSet toBitSet();
ISet intersection(long epoch, ISet sv);
ISet union(long epoch, ISet sv);
ISet difference(long epoch, ISet sv);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy