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