ExConsumer.java

package net.dapete.exceptional.function;

import net.dapete.exceptional.ExWrap;
import org.jspecify.annotations.NonNull;

import java.util.function.Consumer;

/**
 * Equivalent of a {@link java.util.function.Consumer} that can throw exceptions.
 *
 * @param <T> the type of the first argument to the operation
 * @param <E> the type of exception thrown
 */
@FunctionalInterface
public interface ExConsumer<T, E extends Exception> extends Wrappable<Consumer<T>> {

    /**
     * Performs this operation on the given argument.
     *
     * @param t the input argument
     * @throws E potentially
     */
    void accept(T t) throws E;

    @Override
    default @NonNull Consumer<T> wrap() {
        return t -> ExWrap.wrap(() -> accept(t));
    }

}