Interface TriConsumer<T,​V,​K>

  • Type Parameters:
    T - Type of first argument
    V - Type of second argument
    K - Type of third argument.

    public interface TriConsumer<T,​V,​K>
    Functional interface for three arguments, similar to BiConsumer.
    • Method Detail

      • accept

        void accept​(T t,
                    V v,
                    K k)