
com.annimon.stream.function.IntToLongFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream Show documentation
Show all versions of stream Show documentation
Enhancing Java 8 Streams
The newest version!
package com.annimon.stream.function;
/**
* Represents a function which produces an {@code long}-valued result from input argument.
*
* @since 1.1.4
* @see Function
*/
public interface IntToLongFunction {
/**
* Applies this function to the given argument.
*
* @param value an argument
* @return the function result
*/
long applyAsLong(int value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy