Skip to content

Commit

Permalink
feat(api): TriConsumer
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Sep 17, 2022
1 parent 7c8f1c3 commit 6bb8a8b
Showing 1 changed file with 8 additions and 0 deletions.
@@ -0,0 +1,8 @@
package org.auioc.mcmod.arnicalib.api.java.function;

@FunctionalInterface
public interface TriConsumer<K, V, S> {

void accept(K k, V v, S s);

}

0 comments on commit 6bb8a8b

Please sign in to comment.