Searched defs:Map2 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DFp.java118 public static interface Map2<A,B,C>{ C apply(final A a, final B b); } interface in class:Fp
131 private Map2<A,B,C> target; private A a;
132 public Curry2to1(Map2<A, B, C> targett, A aa) { target = targett; a = aa; }
159 public static <A,B,C> List<C> map2(Map2<A,B,C> fn, final Collection<A> as, final Collection<B> bs){
202 public static <A,B> A foldl(final Map2<A,B,A> f, A a, final Collection<B> xs){ argument
226 return Fp.foldl(new Fp.Map2<String, A, String>(){
233 public static Map2<Integer,Integer,Integer> operatorPlus = new Map2<Integer, Integer, Integer>(){

Completed in 32 milliseconds