com.github.chrisdchristo.pipe.IndexedSet Maven / Gradle / Ivy
package com.github.chrisdchristo.pipe;
import java.util.HashSet;
import java.util.Set;
public class IndexedSet extends HashSet> {
public static IndexedSet from(final Set> set) {
final IndexedSet indexedSet = new IndexedSet();
indexedSet.addAll(set);
return indexedSet;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy