org.quicktheories.api.TriConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quicktheories Show documentation
Show all versions of quicktheories Show documentation
Property based testing for Java
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