| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.booleans |
Provides type-specific classes for boolean elements or keys.
|
| it.unimi.dsi.fastutil.bytes |
Provides type-specific classes for byte elements or keys.
|
| it.unimi.dsi.fastutil.chars |
Provides type-specific classes for character elements or keys.
|
| it.unimi.dsi.fastutil.doubles |
Provides type-specific classes for double elements or keys.
|
| it.unimi.dsi.fastutil.floats |
Provides type-specific classes for float elements or keys.
|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| it.unimi.dsi.fastutil.io |
Provides classes and static methods that make object and primitive-type I/O easier and faster.
|
| it.unimi.dsi.fastutil.longs |
Provides type-specific classes for long elements or keys.
|
| it.unimi.dsi.fastutil.objects |
Provides type-specific classes for object elements or keys.
|
| it.unimi.dsi.fastutil.shorts |
Provides type-specific classes for short elements or keys.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanBidirectionalIterator
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing,
and the possibility to skip elements backwards.
|
interface |
BooleanBigListIterator
A type-specific
BigListIterator. |
interface |
BooleanListIterator
A type-specific bidirectional iterator that is also a
ListIterator. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBooleanBidirectionalIterator
Deprecated.
As of fastutil 8 this class is no longer necessary, as its previous abstract
methods are now default methods of the type-specific interface.
|
class |
AbstractBooleanBigListIterator
Deprecated.
As of fastutil 8 this class is no longer necessary, as its previous abstract
methods are now default methods of the type-specific interface.
|
class |
AbstractBooleanIterator
Deprecated.
As of fastutil 8 this class is no longer necessary, as its previous abstract
methods are now default methods of the type-specific interface.
|
class |
AbstractBooleanListIterator
Deprecated.
As of fastutil 8 this class is no longer necessary, as its previous abstract
methods are now default methods of the type-specific interface.
|
static class |
BooleanBigListIterators.BigListIteratorListIterator
A class exposing a list iterator as a big-list iterator..
|
static class |
BooleanBigListIterators.EmptyBigListIterator
A class returning no elements and a type-specific big list iterator interface.
|
static class |
BooleanBigListIterators.UnmodifiableBigListIterator
An unmodifiable wrapper class for big list iterators.
|
static class |
BooleanIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
BooleanIterators.UnmodifiableBidirectionalIterator
An unmodifiable wrapper class for bidirectional iterators.
|
static class |
BooleanIterators.UnmodifiableIterator
An unmodifiable wrapper class for iterators.
|
static class |
BooleanIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
| Modifier and Type | Field and Description |
|---|---|
protected BooleanIterator |
BooleanIterators.UnmodifiableIterator.i |
| Modifier and Type | Method and Description |
|---|---|
static BooleanIterator |
BooleanIterators.asBooleanIterator(Iterator i)
Wraps a standard iterator into a type-specific iterator.
|
static BooleanIterator |
BooleanIterators.concat(BooleanIterator[] a)
Concatenates all iterators contained in an array.
|
static BooleanIterator |
BooleanIterators.concat(BooleanIterator[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
abstract BooleanIterator |
AbstractBooleanSet.iterator() |
BooleanIterator |
BooleanSet.iterator()
Returns a type-specific iterator on the elements of this set.
|
BooleanIterator |
BooleanOpenHashSet.iterator() |
abstract BooleanIterator |
AbstractBooleanCollection.iterator() |
BooleanIterator |
BooleanIterable.iterator()
Returns a type-specific iterator.
|
BooleanIterator |
BooleanCollection.iterator()
Returns a type-specific iterator on the elements of this collection.
|
BooleanIterator |
BooleanCollections.SynchronizedCollection.iterator() |
BooleanIterator |
BooleanCollections.UnmodifiableCollection.iterator() |
BooleanIterator |
BooleanCollections.IterableCollection.iterator() |
BooleanIterator |
BooleanArraySet.iterator() |
static BooleanIterator |
BooleanIterators.unmodifiable(BooleanIterator i)
Returns an unmodifiable iterator backed by the specified iterator.
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
BooleanIterators.all(BooleanIterator iterator,
Predicate<? super Boolean> predicate) |
static boolean |
BooleanIterators.any(BooleanIterator iterator,
Predicate<? super Boolean> predicate) |
static BooleanIterator |
BooleanIterators.concat(BooleanIterator[] a)
Concatenates all iterators contained in an array.
|
static BooleanIterator |
BooleanIterators.concat(BooleanIterator[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
static int |
BooleanIterators.indexOf(BooleanIterator iterator,
Predicate<? super Boolean> predicate) |
static BooleanList |
BooleanIterators.pour(BooleanIterator i)
Pours an iterator, returning a type-specific list.
|
static int |
BooleanIterators.pour(BooleanIterator i,
BooleanCollection s)
Pours an iterator into a type-specific collection.
|
static int |
BooleanIterators.pour(BooleanIterator i,
BooleanCollection s,
int max)
Pours an iterator into a type-specific collection, with a limit on the number of elements.
|
static BooleanList |
BooleanIterators.pour(BooleanIterator i,
int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.
|
static BooleanIterator |
BooleanIterators.unmodifiable(BooleanIterator i)
Returns an unmodifiable iterator backed by the specified iterator.
|
static boolean[] |
BooleanIterators.unwrap(BooleanIterator i)
Unwraps an iterator, returning an array.
|
static int |
BooleanIterators.unwrap(BooleanIterator i,
boolean[] array)
Unwraps an iterator into an array.
|
static long |
BooleanIterators.unwrap(BooleanIterator i,
boolean[][] array)
Unwraps an iterator into a big array.
|
static long |
BooleanIterators.unwrap(BooleanIterator i,
boolean[][] array,
long offset,
long max)
Unwraps an iterator into a big array starting at a given offset for a given number of elements.
|
static int |
BooleanIterators.unwrap(BooleanIterator i,
boolean[] array,
int offset,
int max)
Unwraps an iterator into an array starting at a given offset for a given number of elements.
|
static long |
BooleanIterators.unwrap(BooleanIterator i,
BooleanCollection c)
Unwraps an iterator into a type-specific collection.
|
static int |
BooleanIterators.unwrap(BooleanIterator i,
BooleanCollection c,
int max)
Unwraps an iterator into a type-specific collection, with a limit on the number of elements.
|
static boolean[] |
BooleanIterators.unwrap(BooleanIterator i,
int max)
Unwraps an iterator, returning an array, with a limit on the number of elements.
|
static boolean[][] |
BooleanIterators.unwrapBig(BooleanIterator i)
Unwraps an iterator, returning a big array.
|
static boolean[][] |
BooleanIterators.unwrapBig(BooleanIterator i,
long max)
Unwraps an iterator, returning a big array, with a limit on the number of elements.
|
| Constructor and Description |
|---|
BooleanArrayList(BooleanIterator i)
Creates a new array list and fills it with the elements returned by a type-specific iterator..
|
BooleanBigArrayBigList(BooleanIterator i)
Creates a new big-array big list and fills it with the elements returned by a type-specific iterator..
|
BooleanOpenHashSet(BooleanIterator i)
Creates a new hash set with
Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator. |
BooleanOpenHashSet(BooleanIterator i,
float f)
Creates a new hash set using elements provided by a type-specific iterator.
|
UnmodifiableIterator(BooleanIterator i) |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractByte2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractByte2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractChar2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractChar2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractDouble2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractDouble2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractFloat2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractFloat2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractInt2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractInt2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Method and Description |
|---|---|
static BooleanIterator |
TextIO.asBooleanIterator(BufferedReader reader)
Wraps the given buffered reader into an iterator.
|
static BooleanIterator |
BinIO.asBooleanIterator(CharSequence filename)
Wraps a file given by a pathname into an iterator.
|
static BooleanIterator |
TextIO.asBooleanIterator(CharSequence filename)
Wraps a file given by a pathname into an iterator.
|
static BooleanIterator |
BinIO.asBooleanIterator(DataInput dataInput)
Wraps the given data input stream into an iterator.
|
static BooleanIterator |
BinIO.asBooleanIterator(File file)
Wraps a file given by a
File object into an iterator. |
static BooleanIterator |
TextIO.asBooleanIterator(File file)
Wraps a file given by a
File object into an iterator. |
| Modifier and Type | Method and Description |
|---|---|
static void |
BinIO.storeBooleans(BooleanIterator i,
CharSequence filename)
Stores the element returned by an iterator to a file given by a pathname.
|
static void |
TextIO.storeBooleans(BooleanIterator i,
CharSequence filename)
Stores the element returned by an iterator to a file given by a pathname.
|
static void |
BinIO.storeBooleans(BooleanIterator i,
DataOutput dataOutput)
Stores the element returned by an iterator to a given data output.
|
static void |
BinIO.storeBooleans(BooleanIterator i,
File file)
Stores the element returned by an iterator to a file given by a
File object. |
static void |
TextIO.storeBooleans(BooleanIterator i,
File file)
Stores the element returned by an iterator to a file given by a
File object. |
static void |
TextIO.storeBooleans(BooleanIterator i,
PrintStream stream)
Stores the element returned by an iterator to a given print stream.
|
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractLong2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractLong2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractObject2BooleanSortedMap.ValuesIterator<K>
A wrapper exhibiting a map iterator as an iterator on values.
|
protected static class |
AbstractReference2BooleanSortedMap.ValuesIterator<K>
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractReference2BooleanSortedMap.ValuesCollection.iterator() |
BooleanIterator |
AbstractObject2BooleanSortedMap.ValuesCollection.iterator() |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractShort2BooleanSortedMap.ValuesIterator
A wrapper exhibiting a map iterator as an iterator on values.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanIterator |
AbstractShort2BooleanSortedMap.ValuesCollection.iterator() |
Copyright © 2020. All rights reserved.