
com.github.hypfvieh.function.IThrowingBiConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-utils Show documentation
Show all versions of java-utils Show documentation
A collection of utils commonly used in my projects.
Feel free to use it (or parts of it) in your own projects.
The newest version!
package com.github.hypfvieh.function;
/**
* Supplier which allows throwing any exception.
*
* @param first type which is supplied
* @param second type which is supplied
* @param type of exception which gets thrown
*
* @author hypfvieh
* @since v1.2.1 - 2024-12-26
*/
@FunctionalInterface
public interface IThrowingBiConsumer {
/**
* Performs this operation on the given arguments.
*
* @throws T exception
*/
void accept(V1 _val1, V2 _val2) throws T;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy