Uses of Class
com.util.lodash.Tuple
-
Packages that use Tuple Package Description com.util.lodash com.util.lodash.util -
-
Uses of Tuple in com.util.lodash
Methods in com.util.lodash that return Tuple Modifier and Type Method Description static <A,B>
Tuple<A,B>Tuple. create(A a, B b)Tuple<T,java.util.List<T>>Underscore. pop()static <T> Tuple<T,java.util.List<T>>Underscore. pop(java.util.List<T> list)Tuple<T,java.util.List<T>>Underscore. set(int index, T value)static <T> Tuple<T,java.util.List<T>>Underscore. set(java.util.List<T> list, int index, T value)Tuple<T,java.util.List<T>>Underscore. shift()static <T> Tuple<T,java.util.List<T>>Underscore. shift(java.util.List<T> list)Methods in com.util.lodash that return types with arguments of type Tuple Modifier and Type Method Description static <K,V>
java.util.List<Tuple<V,K>>Underscore. invert(java.util.Map<K,V> object)static <K,V>
java.util.List<Tuple<K,V>>Underscore. mapObject(java.util.Map<K,V> object, java.util.function.Function<? super V,V> func)static <K,V>
java.util.List<Tuple<K,V>>Underscore. object(java.util.List<K> keys, java.util.List<V> values)static <K,V>
java.util.List<Tuple<K,V>>Underscore. omit(java.util.Map<K,V> object, java.util.function.Predicate<V> pred)static <K,V>
java.util.List<Tuple<K,V>>Underscore. omit(java.util.Map<K,V> object, K... keys)static <K,V>
java.util.List<Tuple<K,V>>Underscore. pairs(java.util.Map<K,V> object)static <K,V>
java.util.List<Tuple<K,V>>Underscore. pick(java.util.Map<K,V> object, java.util.function.Predicate<V> pred)static <K,V>
java.util.List<Tuple<K,V>>Underscore. pick(java.util.Map<K,V> object, K... keys)Underscore.Chain<Tuple<T,java.util.List<T>>>Underscore.Chain. pop()Underscore.Chain<Tuple<T,java.util.List<T>>>Underscore.Chain. shift()Method parameters in com.util.lodash with type arguments of type Tuple Modifier and Type Method Description <E> Underscore.Chain<Optional<T>>Underscore.Chain. findWhere(java.util.List<Tuple<java.lang.String,E>> properties)static <T,E>
Optional<E>Underscore. findWhere(java.lang.Iterable<E> iterable, java.util.List<Tuple<java.lang.String,T>> properties)<E> Optional<T>Underscore. findWhere(java.util.List<Tuple<java.lang.String,E>> properties)static <K,V>
java.util.Map<K,V>Underscore. toMap(java.util.List<Tuple<K,V>> tuples)<E> Underscore.Chain<T>Underscore.Chain. where(java.util.List<Tuple<java.lang.String,E>> properties)<E> java.util.List<T>Underscore. where(java.util.List<Tuple<java.lang.String,E>> properties)static <T,E>
java.util.Set<E>Underscore. where(java.util.Set<E> set, java.util.List<Tuple<java.lang.String,T>> properties) -
Uses of Tuple in com.util.lodash.util
Method parameters in com.util.lodash.util with type arguments of type Tuple Modifier and Type Method Description <E> U.Chain<Optional<T>>U.Chain. findWhere(java.util.List<Tuple<java.lang.String,E>> properties)<E> U.Chain<T>U.Chain. where(java.util.List<Tuple<java.lang.String,E>> properties)
-