| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Welcome to JavaIterables, the library that brings Python-like list and dict functionality to Java! Say goodbye to boilerplate code and hello to clean, efficient data manipulation. Whether you're managing collections or building complex data structures, List and Dict have got your back.
Because Java deserves to be fun too! With JavaIterables, you can:
import javaiterables.List;
public class Main {
public static void main(String[] args) {
List myList = new List();
myList.append("Java");
myList.append("is");
myList.append("awesome!");
System.out.println("Original List:");
myList.show();
myList.reverse();
System.out.println("Reversed List:");
myList.show();
}
}import javaiterables.Dict;
public class Main {
public static void main(String[] args) {
Dict myDict = new Dict();
myDict.add("language", "Java");
myDict.add("type", "Object-Oriented");
myDict.add("fun", true);
System.out.println("Dictionary Contents:");
System.out.println("Language: " + myDict.get("language"));
System.out.println("Type: " + myDict.get("type"));
System.out.println("Is it fun? " + String.valueOf(myDict.get("fun")));
}
}No need to compile anything! Just grab the precompiled javaiterables.jar from the release section and add it to your project:
This library is open-source and available under the MIT License. Feel free to use, modify, and distribute it as needed.
Check out the full documentation for a deep dive into all the features, methods, and examples.
And of course, you, who is going to try this amazing library!
| Back | FazBrowse Home | New Git URL |