9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-02 22:02:23 +00:00
This commit is contained in:
Daniel Mills
2020-10-26 03:51:03 -04:00
parent 7d7269bfe6
commit 6e294d1363
5 changed files with 137 additions and 162 deletions

View File

@@ -0,0 +1,8 @@
package com.volmit.iris.util;
@SuppressWarnings("hiding")
@FunctionalInterface
public interface Consumer4<A, B, C, D>
{
public void accept(A a, B b, C c, D d);
}

View File

@@ -0,0 +1,8 @@
package com.volmit.iris.util;
@SuppressWarnings("hiding")
@FunctionalInterface
public interface Consumer5<A, B, C, D, E>
{
public void accept(A a, B b, C c, D d, E e);
}