public class ListUtil
extends Object
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
ListUtil
public ListUtil()
-
Method Details
-
map
public static <A,
B> List<B> map(List<A> list,
F<A,B> f)
-
-
fold
public static <A,
B> B fold(List<A> list,
F2<B,A,B> f,
B b)
-
flatMap
public static <A,
B> List<B> flatMap(List<A> list,
F<A,List<B>> f)
-