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

io.github.andriamarosoa.functional.interfaces.Parameter0 Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package io.github.andriamarosoa.functional.interfaces;

@FunctionalInterface
public interface Parameter0 extends Function{
    Object run(Caller a);
    @Override
    default Object run(Object ... arg){
        return this.run((Caller)arg[0]);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy