mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-05 14:06:53 +00:00
7 lines
116 B
Java
7 lines
116 B
Java
package dev.plex.util.function;
|
|
|
|
public interface QuadConsumer<K, V, S, T>
|
|
{
|
|
void accept(K k, V v, S s, T t);
|
|
}
|