This commit is contained in:
Daniel Mills
2020-07-27 20:49:26 -04:00
parent 1ae1cebab6
commit 108499706a
181 changed files with 11266 additions and 498 deletions

View File

@@ -0,0 +1,7 @@
package com.volmit.iris.util;
@FunctionalInterface
public interface Function2<A, B, R>
{
public R apply(A a, B b);
}