com.github.azbh111.utils.java.function.Long2ShortFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.function;
/**
*
* @author pyz
* @date 2019/3/11 8:43 PM
*/
@FunctionalInterface
public interface Long2ShortFunction {
short apply(long in);
}