com.bestvike.function.Func2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linq Show documentation
Show all versions of linq Show documentation
LINQ to Objects for Java.
The newest version!
package com.bestvike.function;
/**
* Created by 许崇雷 on 2017-07-10.
*/
@FunctionalInterface
public interface Func2 {
TResult apply(T1 arg1, T2 arg2);
}