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

io.github.serpro69.kfaker.FunctionalUtil Maven / Gradle / Ivy

There is a newer version: 2.0.0-rc.7
Show newest version
package io.github.serpro69.kfaker;

import kotlin.Unit;
import kotlin.jvm.functions.Function1;

import java.util.function.Consumer;

public class FunctionalUtil {

    public static  Function1 fromConsumer(Consumer callable) {
        return t -> {
            callable.accept(t);
            return Unit.INSTANCE;
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy