<dependency>
<groupId>net.andreinc</groupId>
<artifactId>dexx-collections</artifactId>
<version>0.6</version>
</dependency>
groovy
implementation 'net.andreinc:dexx-collections:0.6'
import com.github.andreinc.dexx.collections.set.DefaultSet;
import java.util.Set;
public class MyCollectionExample {
public static void main(String[] args) {
Set<String> mySet = new DefaultSet<>();
for (String element : mySet) {
System.out.println(element);
}
}
}