Package api.util

Interface TriConsumer<K,V,S>


public interface TriConsumer<K,V,S>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(K k, V v, S s)
    Performs the operation given the specified arguments.
  • Method Details

    • accept

      void accept(K k, V v, S s)
      Performs the operation given the specified arguments.
      Parameters:
      k - the first input argument
      v - the second input argument
      s - the third input argument