All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.quicktheories.api.TriConsumer Maven / Gradle / Ivy

The newest version!
package org.quicktheories.api;

/**
 * Represents an operation that accepts three input arguments and returns no
 * result.
 * 
 * @param 
 *          the type of the first argument to the operation
 * @param 
 *          the type of the second argument to the operation
 * @param 
 *          the type of the second argument to the operation
 */
@FunctionalInterface
public interface TriConsumer {

  /**
   * Performs this operation on the given arguments.
   *
   * @param a
   *          the first input argument
   * @param b
   *          the second input argument
   * @param c
   *          the third input argument
   */
  void accept(A a, B b, C c);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy