潘志宝
2024-12-24 3f7a53ff02aa94da1ad9170e32df78d09e9da978
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.framework.common.util.collection;
 
import cn.hutool.core.collection.CollUtil;
 
import java.util.Set;
 
/**
 * Set 工具类
 *
 * @author iailab
 */
public class SetUtils {
 
    @SafeVarargs
    public static <T> Set<T> asSet(T... objs) {
        return CollUtil.newHashSet(objs);
    }
 
}