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

com.firefly.utils.function.Func0 Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.utils.function;

import java.util.concurrent.Callable;

/**
 * Represents a function with zero arguments.
 */
public interface Func0 extends Function, Callable {
    @Override
    R call();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy