eight
2024-08-06 f06d7fd046d32f74caf259f3ddbda0bcaf7de799
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();
 
}