com.parzivail.util.generics.Make Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pswg Show documentation
Show all versions of pswg Show documentation
Explore the galaxy with Galaxies: Parzi's Star Wars Mod!
package com.parzivail.util.generics;
import java.util.Collections;
import java.util.HashSet;
public class Make
{
@SafeVarargs
public static HashSet hashSet(T... items)
{
HashSet set = new HashSet(items.length);
Collections.addAll(set, items);
return set;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy