Package | Description |
---|---|
com.koloboke.collect |
The root package of the collection library.
|
com.koloboke.collect.map |
Contains interfaces of
Map specializations, their factories and cursors. |
Modifier and Type | Interface and Description |
---|---|
interface |
ByteCursor
A mutable pointer to the element in an iteration
of
byte s. |
interface |
CharCursor
A mutable pointer to the element in an iteration
of
char s. |
interface |
DoubleCursor
A mutable pointer to the element in an iteration
of
double s. |
interface |
FloatCursor
A mutable pointer to the element in an iteration
of
float s. |
interface |
IntCursor
A mutable pointer to the element in an iteration
of
int s. |
interface |
LongCursor
A mutable pointer to the element in an iteration
of
long s. |
interface |
ObjCursor<E>
A mutable pointer to the element in an iteration
of objects.
|
interface |
ShortCursor
A mutable pointer to the element in an iteration
of
short s. |
Modifier and Type | Interface and Description |
---|---|
interface |
ByteByteCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
byte values. |
interface |
ByteCharCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
char values. |
interface |
ByteDoubleCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
double values. |
interface |
ByteFloatCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
float values. |
interface |
ByteIntCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
int values. |
interface |
ByteLongCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
long values. |
interface |
ByteObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
byte keys and
Object values. |
interface |
ByteShortCursor
A mutable pointer to the entry in an iteration of entries with
byte keys and
short values. |
interface |
CharByteCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
byte values. |
interface |
CharCharCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
char values. |
interface |
CharDoubleCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
double values. |
interface |
CharFloatCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
float values. |
interface |
CharIntCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
int values. |
interface |
CharLongCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
long values. |
interface |
CharObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
char keys and
Object values. |
interface |
CharShortCursor
A mutable pointer to the entry in an iteration of entries with
char keys and
short values. |
interface |
DoubleByteCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
byte values. |
interface |
DoubleCharCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
char values. |
interface |
DoubleDoubleCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
double values. |
interface |
DoubleFloatCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
float values. |
interface |
DoubleIntCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
int values. |
interface |
DoubleLongCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
long values. |
interface |
DoubleObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
double keys and
Object values. |
interface |
DoubleShortCursor
A mutable pointer to the entry in an iteration of entries with
double keys and
short values. |
interface |
FloatByteCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
byte values. |
interface |
FloatCharCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
char values. |
interface |
FloatDoubleCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
double values. |
interface |
FloatFloatCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
float values. |
interface |
FloatIntCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
int values. |
interface |
FloatLongCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
long values. |
interface |
FloatObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
float keys and
Object values. |
interface |
FloatShortCursor
A mutable pointer to the entry in an iteration of entries with
float keys and
short values. |
interface |
IntByteCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
byte values. |
interface |
IntCharCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
char values. |
interface |
IntDoubleCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
double values. |
interface |
IntFloatCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
float values. |
interface |
IntIntCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
int values. |
interface |
IntLongCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
long values. |
interface |
IntObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
int keys and
Object values. |
interface |
IntShortCursor
A mutable pointer to the entry in an iteration of entries with
int keys and
short values. |
interface |
LongByteCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
byte values. |
interface |
LongCharCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
char values. |
interface |
LongDoubleCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
double values. |
interface |
LongFloatCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
float values. |
interface |
LongIntCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
int values. |
interface |
LongLongCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
long values. |
interface |
LongObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
long keys and
Object values. |
interface |
LongShortCursor
A mutable pointer to the entry in an iteration of entries with
long keys and
short values. |
interface |
ObjByteCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
byte values. |
interface |
ObjCharCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
char values. |
interface |
ObjDoubleCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
double values. |
interface |
ObjFloatCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
float values. |
interface |
ObjIntCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
int values. |
interface |
ObjLongCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
long values. |
interface |
ObjObjCursor<K,V>
A mutable pointer to the entry in an iteration of entries with
Object keys and
Object values. |
interface |
ObjShortCursor<K>
A mutable pointer to the entry in an iteration of entries with
Object keys and
short values. |
interface |
ShortByteCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
byte values. |
interface |
ShortCharCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
char values. |
interface |
ShortDoubleCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
double values. |
interface |
ShortFloatCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
float values. |
interface |
ShortIntCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
int values. |
interface |
ShortLongCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
long values. |
interface |
ShortObjCursor<V>
A mutable pointer to the entry in an iteration of entries with
short keys and
Object values. |
interface |
ShortShortCursor
A mutable pointer to the entry in an iteration of entries with
short keys and
short values. |