Uses of Interface
io.vavr.collection.BitSet
Packages that use BitSet
-
Uses of BitSet in io.vavr.collection
Classes in io.vavr.collection that implement BitSetModifier and TypeClassDescriptionstatic class
static class
static class
static class
Methods in io.vavr.collection that return BitSetModifier and TypeMethodDescriptionBitSetModule.AbstractBitSet.addElement
(int element) BitSetModule.AbstractBitSet.createEmpty()
BitSetModule.AbstractBitSet.createFromAll
(Iterable<? extends T> values) BitSet.distinct()
BitSet.distinctBy
(Comparator<? super T> comparator) BitSet.distinctBy
(Function<? super T, ? extends U> keyExtractor) BitSetModule.AbstractBitSet.distinctBy
(Comparator<? super T> comparator) BitSetModule.AbstractBitSet.distinctBy
(Function<? super T, ? extends U> keyExtractor) BitSet.drop
(int n) BitSetModule.AbstractBitSet.drop
(int n) BitSet.dropRight
(int n) BitSetModule.AbstractBitSet.dropRight
(int n) BitSet.Builder.empty()
BitSet.empty()
Returns a BitSet containingn
values supplied by a given Suppliers
.BitSetModule.AbstractBitSet.fromBitMaskNoCopy
(long[] elements) BitSet.init()
BitSetModule.AbstractBitSet.init()
BitSet.ofAll
(boolean... elements) Creates a BitSet from boolean values.BitSet.ofAll
(byte... elements) Creates a BitSet from byte values.BitSet.ofAll
(char... elements) Creates a BitSet from char values.BitSet.ofAll
(int... elements) Creates a BitSet from int values.BitSet.ofAll
(long... elements) Creates a BitSet from long values.BitSet.ofAll
(short... elements) Creates a BitSet from short values.Returns thisBitSet
if it is nonempty, otherwiseBitSet
created from iterable, using existing bitset properties.Returns thisBitSet
if it is nonempty, otherwiseBitSet
created from result of evaluating supplier, using existing bitset properties.BitSet.range
(char from, char toExclusive) BitSet.range
(int from, int toExclusive) Creates a BitSet of int numbers starting fromfrom
, extending totoExclusive - 1
.BitSet.range
(long from, long toExclusive) BitSet.rangeBy
(char from, char toExclusive, int step) BitSet.rangeBy
(int from, int toExclusive, int step) Creates a BitSet of int numbers starting fromfrom
, extending totoExclusive - 1
, withstep
.BitSet.rangeBy
(long from, long toExclusive, long step) BitSet.rangeClosed
(char from, char toInclusive) BitSet.rangeClosed
(int from, int toInclusive) Creates a BitSet of int numbers starting fromfrom
, extending totoInclusive
.BitSet.rangeClosed
(long from, long toInclusive) BitSet.rangeClosedBy
(char from, char toInclusive, int step) BitSet.rangeClosedBy
(int from, int toInclusive, int step) Creates a BitSet of int numbers starting fromfrom
, extending totoInclusive
, withstep
.BitSet.rangeClosedBy
(long from, long toInclusive, long step) BitSet.replaceAll
(T currentElement, T newElement) Returns a BitSet containingn
values of a given Functionf
over a range of integer values from 0 ton - 1
.BitSet.tail()
BitSet.take
(int n) BitSetModule.AbstractBitSet.take
(int n) BitSet.takeRight
(int n) BitSetModule.AbstractBitSet.takeRight
(int n) Methods in io.vavr.collection that return types with arguments of type BitSetModifier and TypeMethodDescriptionBitSet.Builder.collector()
BitSet.collector()
Returns aCollector
which may be used in conjunction withStream.collect(java.util.stream.Collector)
to obtain aBitSet
.BitSet.grouped
(int size) BitSet.initOption()
BitSet.sliding
(int size) BitSet.sliding
(int size, int step) BitSetModule.AbstractBitSet.sliding
(int size, int step) BitSet.tailOption()