Uses of Class
io.vavr.collection.LinkedHashSet
Packages that use LinkedHashSet
-
Uses of LinkedHashSet in io.vavr.collection
Fields in io.vavr.collection declared as LinkedHashSetMethods in io.vavr.collection that return LinkedHashSetModifier and TypeMethodDescriptionAdd the given element to this set, replacing existing one if it is already contained.Adds all of the given elements to this set, replacing existing one if they are not already contained.<R> LinkedHashSet<R> LinkedHashSet.collect(@NonNull PartialFunction<? super T, ? extends R> partialFunction) LinkedHashSet.distinct()LinkedHashSet.distinctBy(@NonNull Comparator<? super T> comparator) <U> LinkedHashSet<T> LinkedHashSet.distinctBy(@NonNull Function<? super T, ? extends U> keyExtractor) LinkedHashSet.drop(int n) LinkedHashSet.dropRight(int n) static <T> LinkedHashSet<T> LinkedHashSet.empty()Returns the empty LinkedHashSet.static <T> LinkedHashSet<T> Returns a LinkedHashSet containing tuples returned byncalls to a given Suppliers.<U> LinkedHashSet<U> LinkedHashSet.init()<U> LinkedHashSet<U> <U> LinkedHashSet<U> LinkedHashSet.mapTo(U value) LinkedHashSet.mapToVoid()static <T> LinkedHashSet<T> LinkedHashSet.narrow(LinkedHashSet<? extends T> linkedHashSet) Narrows aLinkedHashSet<? extends T>toLinkedHashSet<T>via a type-safe cast.static <T> LinkedHashSet<T> LinkedHashSet.of(T element) Returns a singletonLinkedHashSet, i.e.static <T> LinkedHashSet<T> LinkedHashSet.of(T @NonNull ... elements) Creates a LinkedHashSet of the given elements.static LinkedHashSet<Boolean> LinkedHashSet.ofAll(boolean @NonNull ... elements) Creates a LinkedHashSet from boolean values.static LinkedHashSet<Byte> LinkedHashSet.ofAll(byte @NonNull ... elements) Creates a LinkedHashSet from byte values.static LinkedHashSet<Character> LinkedHashSet.ofAll(char @NonNull ... elements) Creates a LinkedHashSet from char values.static LinkedHashSet<Double> LinkedHashSet.ofAll(double @NonNull ... elements) Creates a LinkedHashSet from double values.static LinkedHashSet<Float> LinkedHashSet.ofAll(float @NonNull ... elements) Creates a LinkedHashSet from float values.static LinkedHashSet<Integer> LinkedHashSet.ofAll(int @NonNull ... elements) Creates a LinkedHashSet from int values.static LinkedHashSet<Long> LinkedHashSet.ofAll(long @NonNull ... elements) Creates a LinkedHashSet from long values.static LinkedHashSet<Short> LinkedHashSet.ofAll(short @NonNull ... elements) Creates a LinkedHashSet from short values.static <T> LinkedHashSet<T> Creates a LinkedHashSet of the given elements.static <T> LinkedHashSet<T> Creates a LinkedHashSet that contains the elements of the givenStream.static LinkedHashSet<Character> LinkedHashSet.range(char from, char toExclusive) Creates a LinkedHashSet of char numbers starting fromfrom, extending totoExclusive - 1.static LinkedHashSet<Integer> LinkedHashSet.range(int from, int toExclusive) Creates a LinkedHashSet of int numbers starting fromfrom, extending totoExclusive - 1.static LinkedHashSet<Long> LinkedHashSet.range(long from, long toExclusive) Creates a LinkedHashSet of long numbers starting fromfrom, extending totoExclusive - 1.static LinkedHashSet<Character> LinkedHashSet.rangeBy(char from, char toExclusive, int step) Creates a LinkedHashSet of char numbers starting fromfrom, extending totoExclusive - 1, withstep.static LinkedHashSet<Double> LinkedHashSet.rangeBy(double from, double toExclusive, double step) Creates a LinkedHashSet of double numbers starting fromfrom, extending totoExclusive - 1, withstep.static LinkedHashSet<Integer> LinkedHashSet.rangeBy(int from, int toExclusive, int step) Creates a LinkedHashSet of int numbers starting fromfrom, extending totoExclusive - 1, withstep.static LinkedHashSet<Long> LinkedHashSet.rangeBy(long from, long toExclusive, long step) Creates a LinkedHashSet of long numbers starting fromfrom, extending totoExclusive - 1, withstep.static LinkedHashSet<Character> LinkedHashSet.rangeClosed(char from, char toInclusive) Creates a LinkedHashSet of char numbers starting fromfrom, extending totoInclusive.static LinkedHashSet<Integer> LinkedHashSet.rangeClosed(int from, int toInclusive) Creates a LinkedHashSet of int numbers starting fromfrom, extending totoInclusive.static LinkedHashSet<Long> LinkedHashSet.rangeClosed(long from, long toInclusive) Creates a LinkedHashSet of long numbers starting fromfrom, extending totoInclusive.static LinkedHashSet<Character> LinkedHashSet.rangeClosedBy(char from, char toInclusive, int step) Creates a LinkedHashSet of char numbers starting fromfrom, extending totoInclusive, withstep.static LinkedHashSet<Double> LinkedHashSet.rangeClosedBy(double from, double toInclusive, double step) Creates a LinkedHashSet of double numbers starting fromfrom, extending totoInclusive, withstep.static LinkedHashSet<Integer> LinkedHashSet.rangeClosedBy(int from, int toInclusive, int step) Creates a LinkedHashSet of int numbers starting fromfrom, extending totoInclusive, withstep.static LinkedHashSet<Long> LinkedHashSet.rangeClosedBy(long from, long toInclusive, long step) Creates a LinkedHashSet of long numbers starting fromfrom, extending totoInclusive, withstep.LinkedHashSet.replaceAll(T currentElement, T newElement) <U> LinkedHashSet<U> LinkedHashSet.scanLeft(U zero, @NonNull BiFunction<? super U, ? super T, ? extends U> operation) <U> LinkedHashSet<U> LinkedHashSet.scanRight(U zero, @NonNull BiFunction<? super T, ? super U, ? extends U> operation) static <T> LinkedHashSet<T> Returns a LinkedHashSet containingnvalues of a given Functionfover a range of integer values from 0 ton - 1.LinkedHashSet.tail()LinkedHashSet.take(int n) LinkedHashSet.takeRight(int n) Adds all of the elements ofelementsto this set, replacing existing ones if they already present.(package private) static <T> LinkedHashSet<T> LinkedHashSet.wrap(LinkedHashMap<T, Object> map) <U> LinkedHashSet<Tuple2<T, U>> <U> LinkedHashSet<Tuple2<T, U>> <U,R> LinkedHashSet <R> LinkedHashSet.zipWith(@NonNull Iterable<? extends U> that, @NonNull BiFunction<? super T, ? super U, ? extends R> mapper) LinkedHashSet.zipWithIndex()<U> LinkedHashSet<U> LinkedHashSet.zipWithIndex(@NonNull BiFunction<? super T, ? super Integer, ? extends U> mapper) Methods in io.vavr.collection that return types with arguments of type LinkedHashSetModifier and TypeMethodDescriptionstatic <T> Collector<T, ArrayList<T>, LinkedHashSet<T>> LinkedHashSet.collector()Returns aCollectorwhich may be used in conjunction withStream.collect(Collector)to obtain aLinkedHashSet.<C> Map<C, LinkedHashSet<T>> LinkedHashSet.grouped(int size) LinkedHashSet.initOption()LinkedHashSet.sliding(int size) LinkedHashSet.sliding(int size, int step) LinkedHashSet.tailOption()<T1,T2> Tuple2 <LinkedHashSet<T1>, LinkedHashSet<T2>> <T1,T2> Tuple2 <LinkedHashSet<T1>, LinkedHashSet<T2>> <T1,T2, T3> Tuple3 <LinkedHashSet<T1>, LinkedHashSet<T2>, LinkedHashSet<T3>> LinkedHashSet.unzip3(@NonNull Function<? super T, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) <T1,T2, T3> Tuple3 <LinkedHashSet<T1>, LinkedHashSet<T2>, LinkedHashSet<T3>> LinkedHashSet.unzip3(@NonNull Function<? super T, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) <T1,T2, T3> Tuple3 <LinkedHashSet<T1>, LinkedHashSet<T2>, LinkedHashSet<T3>> LinkedHashSet.unzip3(@NonNull Function<? super T, Tuple3<? extends T1, ? extends T2, ? extends T3>> unzipper) Methods in io.vavr.collection with parameters of type LinkedHashSetModifier and TypeMethodDescriptionstatic <T> LinkedHashSet<T> LinkedHashSet.narrow(LinkedHashSet<? extends T> linkedHashSet) Narrows aLinkedHashSet<? extends T>toLinkedHashSet<T>via a type-safe cast.Method parameters in io.vavr.collection with type arguments of type LinkedHashSetModifier and TypeMethodDescription<U> ULinkedHashSet.transform(@NonNull Function<? super LinkedHashSet<T>, ? extends U> f) Transforms thisLinkedHashSet.