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