eight
2025-04-01 3474dd8db7f654f0a9e1d55a1d404c4ca43f78fb
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();
 
}