![JAR search and dependency download from the Maven repository](/logo.png)
marcel.lang.util.function.Long2ObjectFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marcel-stdlib Show documentation
Show all versions of marcel-stdlib Show documentation
Standard library of Marcel Lang
The newest version!
package marcel.lang.util.function;
import java.util.function.Function;
@FunctionalInterface
public interface Long2ObjectFunction extends Function, java.util.function.LongFunction {
/**
* {@inheritDoc}
*
* @since 8.0.0
*/
@Override
V apply(long operand);
@Override
default V apply(Long l) {
return apply(l.longValue());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy