Interface TriConsumer<T,​U,​V>


  • public interface TriConsumer<T,​U,​V>

    TriConsumer interface.

    Version:
    $Id: $Id
    Author:
    Long Dinh
    • Method Detail

      • accept

        void accept​(T t,
                    U u,
                    V v)
        Performs this operation on the given arguments.
        Parameters:
        t - the first input argument
        u - the second input argument
        v - the third input argument