Uses of Interface
io.vavr.collection.BitSet
Packages that use BitSet
-
Uses of BitSet in io.vavr.collection
Methods in io.vavr.collection that return BitSetModifier and TypeMethodDescriptionBitSet.distinct()BitSet.distinctBy(Comparator<? super T> comparator) BitSet.distinctBy(Function<? super T, ? extends U> keyExtractor) BitSet.drop(int n) BitSet.dropRight(int n) BitSet.Builder.empty()BitSet.empty()Returns a BitSet containing no elements.Returns a BitSet containingnvalues supplied by a given Suppliers.BitSet.init()Returns a BitSet containing a single value.Creates a BitSet of int numbers starting fromfrom, extending totoExclusive - 1.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.Creates a BitSet of int numbers starting fromfrom, extending totoExclusive - 1.Creates a BitSet of int numbers starting fromfrom, extending totoExclusive - 1.BitSet.range(char from, char toExclusive) Creates a BitSet of char numbers starting fromfrom, extending totoExclusive - 1.BitSet.range(int from, int toExclusive) Creates a BitSet of int numbers starting fromfrom, extending totoExclusive - 1.BitSet.range(long from, long toExclusive) Creates a BitSet of long numbers starting fromfrom, extending totoExclusive - 1.BitSet.rangeBy(char from, char toExclusive, int step) Creates a BitSet of char numbers starting fromfrom, extending totoExclusive - 1, withstep.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) Creates a BitSet of long numbers starting fromfrom, extending totoExclusive - 1, withstep.BitSet.rangeClosed(char from, char toInclusive) Creates a BitSet of char numbers starting fromfrom, extending totoInclusive.BitSet.rangeClosed(int from, int toInclusive) Creates a BitSet of int numbers starting fromfrom, extending totoInclusive.BitSet.rangeClosed(long from, long toInclusive) Creates a BitSet of long numbers starting fromfrom, extending totoInclusive.BitSet.rangeClosedBy(char from, char toInclusive, int step) Creates a BitSet of char numbers starting fromfrom, extending totoInclusive, withstep.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) Creates a BitSet of long numbers starting fromfrom, extending totoInclusive, withstep.BitSet.replaceAll(T currentElement, T newElement) Returns a BitSet containingnvalues of a given Functionfover a range of integer values from 0 ton - 1.BitSet.tail()BitSet.take(int n) BitSet.takeRight(int n) Methods in io.vavr.collection that return types with arguments of type BitSetModifier and TypeMethodDescriptionBitSet.Builder.collector()BitSet.collector()Returns aCollectorwhich 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) BitSet.tailOption()