com.github.azbh111.utils.java.supplier.IntSupplier 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.supplier;
/**
*
* @author pyz
* @date 2019/3/30 4:17 PM
*/
@FunctionalInterface
public interface IntSupplier {
int get();
}