Jay
2025-02-24 c3c7a6918f0e2dfe597c339117e4185b641be95f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.iailab.framework.common.core;
 
/**
 * 可生成 Int 数组的接口
 *
 * @author iailab
 */
public interface IntArrayValuable {
 
    /**
     * @return int 数组
     */
    int[] array();
 
}