提交 | 用户 | 时间 | ||
e7c126 | 1 | package com.iailab.framework.common.util.collection; |
H | 2 | |
3 | import cn.hutool.core.collection.CollUtil; | |
4 | ||
5 | import java.util.Set; | |
6 | ||
7 | /** | |
8 | * Set 工具类 | |
9 | * | |
10 | * @author iailab | |
11 | */ | |
12 | public class SetUtils { | |
13 | ||
14 | @SafeVarargs | |
15 | public static <T> Set<T> asSet(T... objs) { | |
16 | return CollUtil.newHashSet(objs); | |
17 | } | |
18 | ||
19 | } |