HashSet<T> |
HashSet.add(T element) |
|
HashSet<T> |
HashSet.addAll(@NonNull java.lang.Iterable<? extends T> elements) |
|
<R> HashSet<R> |
HashSet.collect(@NonNull PartialFunction<? super T,? extends R> partialFunction) |
|
HashSet<T> |
HashSet.diff(@NonNull Set<? extends T> elements) |
|
HashSet<T> |
HashSet.distinct() |
|
HashSet<T> |
HashSet.distinctBy(@NonNull java.util.Comparator<? super T> comparator) |
|
<U> HashSet<T> |
HashSet.distinctBy(@NonNull java.util.function.Function<? super T,? extends U> keyExtractor) |
|
HashSet<T> |
HashSet.drop(int n) |
|
HashSet<T> |
HashSet.dropRight(int n) |
|
HashSet<T> |
HashSet.dropUntil(@NonNull java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.dropWhile(@NonNull java.util.function.Predicate<? super T> predicate) |
|
static <T> HashSet<T> |
HashSet.empty() |
Returns the empty HashSet.
|
static <T> HashSet<T> |
HashSet.fill(int n,
@NonNull java.util.function.Supplier<? extends T> s) |
Returns a HashSet containing tuples returned by n calls to a given Supplier s.
|
HashSet<T> |
HashSet.filter(@NonNull java.util.function.Predicate<? super T> predicate) |
|
<U> HashSet<U> |
HashSet.flatMap(@NonNull java.util.function.Function<? super T,? extends java.lang.Iterable<? extends U>> mapper) |
|
HashSet<T> |
HashSet.init() |
|
HashSet<T> |
HashSet.intersect(@NonNull Set<? extends T> elements) |
|
<U> HashSet<U> |
HashSet.map(@NonNull java.util.function.Function<? super T,? extends U> mapper) |
|
<U> HashSet<U> |
HashSet.mapTo(U value) |
|
HashSet<java.lang.Void> |
HashSet.mapToVoid() |
|
static <T> HashSet<T> |
HashSet.narrow(HashSet<? extends T> hashSet) |
Narrows a HashSet<? extends T> to HashSet<T> via a
type-safe cast.
|
static <T> HashSet<T> |
HashSet.of(T element) |
Returns a singleton HashSet, i.e.
|
static <T> HashSet<T> |
HashSet.of(T @NonNull ... elements) |
Creates a HashSet of the given elements.
|
static HashSet<java.lang.Boolean> |
HashSet.ofAll(boolean @NonNull ... elements) |
Creates a HashSet from boolean values.
|
static HashSet<java.lang.Byte> |
HashSet.ofAll(byte @NonNull ... elements) |
Creates a HashSet from byte values.
|
static HashSet<java.lang.Character> |
HashSet.ofAll(char @NonNull ... elements) |
Creates a HashSet from char values.
|
static HashSet<java.lang.Double> |
HashSet.ofAll(double @NonNull ... elements) |
Creates a HashSet from double values.
|
static HashSet<java.lang.Float> |
HashSet.ofAll(float @NonNull ... elements) |
Creates a HashSet from float values.
|
static HashSet<java.lang.Integer> |
HashSet.ofAll(int @NonNull ... elements) |
Creates a HashSet from int values.
|
static HashSet<java.lang.Long> |
HashSet.ofAll(long @NonNull ... elements) |
Creates a HashSet from long values.
|
static HashSet<java.lang.Short> |
HashSet.ofAll(short @NonNull ... elements) |
Creates a HashSet from short values.
|
static <T> HashSet<T> |
HashSet.ofAll(@NonNull java.lang.Iterable<? extends T> elements) |
Creates a HashSet of the given elements.
|
static <T> HashSet<T> |
HashSet.ofAll(java.util.stream.Stream<? extends T> javaStream) |
Creates a HashSet that contains the elements of the given Stream.
|
HashSet<T> |
HashSet.orElse(@NonNull java.lang.Iterable<? extends T> other) |
|
HashSet<T> |
HashSet.orElse(@NonNull java.util.function.Supplier<? extends java.lang.Iterable<? extends T>> supplier) |
|
HashSet<T> |
HashSet.peek(@NonNull java.util.function.Consumer<? super T> action) |
|
static HashSet<java.lang.Character> |
HashSet.range(char from,
char toExclusive) |
Creates a HashSet of char numbers starting from from, extending to toExclusive - 1.
|
static HashSet<java.lang.Integer> |
HashSet.range(int from,
int toExclusive) |
Creates a HashSet of int numbers starting from from, extending to toExclusive - 1.
|
static HashSet<java.lang.Long> |
HashSet.range(long from,
long toExclusive) |
Creates a HashSet of long numbers starting from from, extending to toExclusive - 1.
|
static HashSet<java.lang.Character> |
HashSet.rangeBy(char from,
char toExclusive,
int step) |
Creates a HashSet of char numbers starting from from, extending to toExclusive - 1,
with step.
|
static HashSet<java.lang.Double> |
HashSet.rangeBy(double from,
double toExclusive,
double step) |
Creates a HashSet of double numbers starting from from, extending to toExclusive - 1,
with step.
|
static HashSet<java.lang.Integer> |
HashSet.rangeBy(int from,
int toExclusive,
int step) |
Creates a HashSet of int numbers starting from from, extending to toExclusive - 1,
with step.
|
static HashSet<java.lang.Long> |
HashSet.rangeBy(long from,
long toExclusive,
long step) |
Creates a HashSet of long numbers starting from from, extending to toExclusive - 1,
with step.
|
static HashSet<java.lang.Character> |
HashSet.rangeClosed(char from,
char toInclusive) |
Creates a HashSet of char numbers starting from from, extending to toInclusive.
|
static HashSet<java.lang.Integer> |
HashSet.rangeClosed(int from,
int toInclusive) |
Creates a HashSet of int numbers starting from from, extending to toInclusive.
|
static HashSet<java.lang.Long> |
HashSet.rangeClosed(long from,
long toInclusive) |
Creates a HashSet of long numbers starting from from, extending to toInclusive.
|
static HashSet<java.lang.Character> |
HashSet.rangeClosedBy(char from,
char toInclusive,
int step) |
Creates a HashSet of char numbers starting from from, extending to toInclusive,
with step.
|
static HashSet<java.lang.Double> |
HashSet.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a HashSet of double numbers starting from from, extending to toInclusive,
with step.
|
static HashSet<java.lang.Integer> |
HashSet.rangeClosedBy(int from,
int toInclusive,
int step) |
Creates a HashSet of int numbers starting from from, extending to toInclusive,
with step.
|
static HashSet<java.lang.Long> |
HashSet.rangeClosedBy(long from,
long toInclusive,
long step) |
Creates a HashSet of long numbers starting from from, extending to toInclusive,
with step.
|
HashSet<T> |
HashSet.reject(@NonNull java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.remove(T element) |
|
HashSet<T> |
HashSet.removeAll(@NonNull java.lang.Iterable<? extends T> elements) |
|
HashSet<T> |
HashSet.replace(T currentElement,
T newElement) |
|
HashSet<T> |
HashSet.replaceAll(T currentElement,
T newElement) |
|
HashSet<T> |
HashSet.retainAll(@NonNull java.lang.Iterable<? extends T> elements) |
|
HashSet<T> |
HashSet.scan(T zero,
@NonNull java.util.function.BiFunction<? super T,? super T,? extends T> operation) |
|
<U> HashSet<U> |
HashSet.scanLeft(U zero,
@NonNull java.util.function.BiFunction<? super U,? super T,? extends U> operation) |
|
<U> HashSet<U> |
HashSet.scanRight(U zero,
@NonNull java.util.function.BiFunction<? super T,? super U,? extends U> operation) |
|
static <T> HashSet<T> |
HashSet.tabulate(int n,
@NonNull java.util.function.Function<? super java.lang.Integer,? extends T> f) |
Returns an HashSet containing n values of a given Function f
over a range of integer values from 0 to n - 1.
|
HashSet<T> |
HashSet.tail() |
|
HashSet<T> |
HashSet.take(int n) |
|
HashSet<T> |
HashSet.takeRight(int n) |
|
HashSet<T> |
HashSet.takeUntil(@NonNull java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.takeWhile(@NonNull java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.union(@NonNull Set<? extends T> elements) |
|
<U> HashSet<Tuple2<T,U>> |
HashSet.zip(@NonNull java.lang.Iterable<? extends U> that) |
|
<U> HashSet<Tuple2<T,U>> |
HashSet.zipAll(@NonNull java.lang.Iterable<? extends U> that,
T thisElem,
U thatElem) |
|
<U,R> HashSet<R> |
HashSet.zipWith(@NonNull java.lang.Iterable<? extends U> that,
java.util.function.BiFunction<? super T,? super U,? extends R> mapper) |
|
HashSet<Tuple2<T,java.lang.Integer>> |
HashSet.zipWithIndex() |
|
<U> HashSet<U> |
HashSet.zipWithIndex(@NonNull java.util.function.BiFunction<? super T,? super java.lang.Integer,? extends U> mapper) |
|