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

org.simpleflatmapper.util.ConstantBiFunction Maven / Gradle / Ivy

package org.simpleflatmapper.util;

public class ConstantBiFunction implements BiFunction {
    private final T t;

    public ConstantBiFunction(T t) {
        this.t = t;
    }

    @Override
    public T apply(P1 p1, P2 p2) {
        return t;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy