eight
2024-09-25 c3e27cb2e84782e99a30cc5a6e8caa67ca0cb72f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.lihu.jh.framework.common.core;
 
/**
 * 可生成 Int 数组的接口
 *
 * @author 芋道源码
 */
public interface IntArrayValuable {
 
    /**
     * @return int 数组
     */
    int[] array();
 
}