mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 11:43:27 +00:00
9 lines
163 B
Java
9 lines
163 B
Java
package com.volmit.iris.util;
|
|
|
|
@SuppressWarnings("hiding")
|
|
@FunctionalInterface
|
|
public interface Function4<A, B, C, D, R>
|
|
{
|
|
public R apply(A a, B b, C c, D d);
|
|
}
|