HashSet<T> |
HashSet.add(T element) |
|
HashSet<T> |
HashSet.addAll(java.lang.Iterable<? extends T> elements) |
|
<R> HashSet<R> |
HashSet.collect(PartialFunction<? super T,? extends R> partialFunction) |
|
HashSet<T> |
HashSet.diff(Set<? extends T> elements) |
|
HashSet<T> |
HashSet.distinct() |
|
HashSet<T> |
HashSet.distinctBy(java.util.Comparator<? super T> comparator) |
|
<U> HashSet<T> |
HashSet.distinctBy(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(java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.dropWhile(java.util.function.Predicate<? super T> predicate) |
|
static <T> HashSet<T> |
HashSet.empty() |
|
static <T> HashSet<T> |
HashSet.fill(int n,
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(java.util.function.Predicate<? super T> predicate) |
|
<U> HashSet<U> |
HashSet.flatMap(java.util.function.Function<? super T,? extends java.lang.Iterable<? extends U>> mapper) |
|
HashSet<T> |
HashSet.init() |
|
HashSet<T> |
HashSet.intersect(Set<? extends T> elements) |
|
<U> HashSet<U> |
HashSet.map(java.util.function.Function<? super T,? extends U> mapper) |
|
static <T> HashSet<T> |
HashSet.narrow(HashSet<? extends T> hashSet) |
Narrows a widened HashSet<? extends T> to HashSet<T>
by performing 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... elements) |
Creates a HashSet of the given elements.
|
static HashSet<java.lang.Boolean> |
HashSet.ofAll(boolean... elements) |
Creates a HashSet from boolean values.
|
static HashSet<java.lang.Byte> |
HashSet.ofAll(byte... elements) |
Creates a HashSet from byte values.
|
static HashSet<java.lang.Character> |
HashSet.ofAll(char... elements) |
Creates a HashSet from char values.
|
static HashSet<java.lang.Double> |
HashSet.ofAll(double... elements) |
Creates a HashSet from double values.
|
static HashSet<java.lang.Float> |
HashSet.ofAll(float... elements) |
Creates a HashSet from float values.
|
static HashSet<java.lang.Integer> |
HashSet.ofAll(int... elements) |
Creates a HashSet from int values.
|
static HashSet<java.lang.Long> |
HashSet.ofAll(long... elements) |
Creates a HashSet from long values.
|
static HashSet<java.lang.Short> |
HashSet.ofAll(short... elements) |
Creates a HashSet from short values.
|
static <T> HashSet<T> |
HashSet.ofAll(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(java.lang.Iterable<? extends T> other) |
|
HashSet<T> |
HashSet.orElse(java.util.function.Supplier<? extends java.lang.Iterable<? extends T>> supplier) |
|
HashSet<T> |
HashSet.peek(java.util.function.Consumer<? super T> action) |
|
static HashSet<java.lang.Character> |
HashSet.range(char from,
char toExclusive) |
|
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) |
|
static HashSet<java.lang.Double> |
HashSet.rangeBy(double from,
double toExclusive,
double 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) |
|
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) |
|
static HashSet<java.lang.Double> |
HashSet.rangeClosedBy(double from,
double toInclusive,
double 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(java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.remove(T element) |
|
HashSet<T> |
HashSet.removeAll(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(java.lang.Iterable<? extends T> elements) |
|
HashSet<T> |
HashSet.scan(T zero,
java.util.function.BiFunction<? super T,? super T,? extends T> operation) |
|
<U> HashSet<U> |
HashSet.scanLeft(U zero,
java.util.function.BiFunction<? super U,? super T,? extends U> operation) |
|
<U> HashSet<U> |
HashSet.scanRight(U zero,
java.util.function.BiFunction<? super T,? super U,? extends U> operation) |
|
static <T> HashSet<T> |
HashSet.tabulate(int n,
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(java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.takeWhile(java.util.function.Predicate<? super T> predicate) |
|
HashSet<T> |
HashSet.union(Set<? extends T> elements) |
|
<U> HashSet<Tuple2<T,U>> |
HashSet.zip(java.lang.Iterable<? extends U> that) |
|
<U> HashSet<Tuple2<T,U>> |
HashSet.zipAll(java.lang.Iterable<? extends U> that,
T thisElem,
U thatElem) |
|
<U,R> HashSet<R> |
HashSet.zipWith(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(java.util.function.BiFunction<? super T,? super java.lang.Integer,? extends U> mapper) |
|