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

com.github.lokic.javaext.func.tuple.TupleConsumer3 Maven / Gradle / Ivy

package com.github.lokic.javaext.func.tuple;

import com.github.lokic.javaext.func.consumer.Consumer3;
import com.github.lokic.javaext.tuple.Tuple3;

import java.util.function.Consumer;

@FunctionalInterface
public interface TupleConsumer3 extends Consumer>, Consumer3 {

    @Override
    default void accept(Tuple3 tuple3) {
        accept(tuple3.getT1(), tuple3.getT2(), tuple3.getT3());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy