| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IntSortedSet
A type-specific
SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing. |
| Modifier and Type | Class and Description |
|---|---|
protected class |
AbstractInt2ObjectSortedMap.KeySet
A wrapper exhibiting the keys of a map.
|
class |
AbstractIntSet
An abstract class providing basic methods for sets implementing a type-specific interface.
|
class |
AbstractIntSortedSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
class |
IntArraySet
A simple, brute-force implementation of a set based on a backing array.
|
static class |
IntSets.EmptySet
An immutable class representing the empty set and implementing a type-specific set interface.
|
static class |
IntSets.Singleton
An immutable class representing a type-specific singleton set.
|
static class |
IntSets.SynchronizedSet
A synchronized wrapper class for sets.
|
static class |
IntSets.UnmodifiableSet
An unmodifiable wrapper class for sets.
|
static class |
IntSortedSets.EmptySet
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
static class |
IntSortedSets.Singleton
A class representing a singleton sorted set.
|
static class |
IntSortedSets.SynchronizedSortedSet
A synchronized wrapper class for sorted sets.
|
static class |
IntSortedSets.UnmodifiableSortedSet
An unmodifiable wrapper class for sorted sets.
|
| Modifier and Type | Field and Description |
|---|---|
protected IntSet |
Int2ObjectOpenHashMap.keys
Cached set of keys.
|
protected IntSet |
Int2ObjectOpenCustomHashMap.keys
Cached set of keys.
|
protected IntSet |
Int2ObjectMaps.Singleton.keys |
protected IntSet |
Int2ObjectMaps.SynchronizedMap.keys |
protected IntSet |
Int2ObjectMaps.UnmodifiableMap.keys |
| Modifier and Type | Method and Description |
|---|---|
IntSet |
Int2ObjectOpenHashMap.keySet() |
IntSet |
Int2ObjectOpenCustomHashMap.keySet() |
IntSet |
Int2ObjectMaps.EmptyMap.keySet() |
IntSet |
Int2ObjectMaps.Singleton.keySet() |
IntSet |
Int2ObjectMaps.SynchronizedMap.keySet() |
IntSet |
Int2ObjectMaps.UnmodifiableMap.keySet() |
IntSet |
Int2ObjectMap.keySet()
Returns a set view of the keys contained in this map.
|
IntSet |
Int2ObjectArrayMap.keySet() |
IntSet |
AbstractInt2ObjectMap.keySet()
Returns a type-specific-set view of the keys of this map.
|
static IntSet |
IntSets.singleton(int element)
Returns a type-specific immutable set containing only the specified element.
|
static IntSet |
IntSets.singleton(Integer element)
Returns a type-specific immutable set containing only the specified element.
|
static IntSet |
IntSets.synchronize(IntSet s)
Returns a synchronized type-specific set backed by the given type-specific set.
|
static IntSet |
IntSets.synchronize(IntSet s,
Object sync)
Returns a synchronized type-specific set backed by the given type-specific set, using an assigned object to synchronize.
|
static IntSet |
IntSets.unmodifiable(IntSet s)
Returns an unmodifiable type-specific set backed by the given type-specific set.
|
| Modifier and Type | Method and Description |
|---|---|
static IntSet |
IntSets.synchronize(IntSet s)
Returns a synchronized type-specific set backed by the given type-specific set.
|
static IntSet |
IntSets.synchronize(IntSet s,
Object sync)
Returns a synchronized type-specific set backed by the given type-specific set, using an assigned object to synchronize.
|
static IntSet |
IntSets.unmodifiable(IntSet s)
Returns an unmodifiable type-specific set backed by the given type-specific set.
|
| Constructor and Description |
|---|
SynchronizedSet(IntSet s) |
SynchronizedSet(IntSet s,
Object sync) |
UnmodifiableSet(IntSet s) |
Copyright © 2016. All rights reserved.