mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
8 lines
151 B
Java
8 lines
151 B
Java
package com.volmit.iris.util;
|
|
|
|
@SuppressWarnings("hiding")
|
|
@FunctionalInterface
|
|
public interface Function3<A, B, C, R> {
|
|
R apply(A a, B b, C c);
|
|
}
|