Skip to content

vitorpamplona/cascading-fors

Repository files navigation

Cascading Fors

Java Utility class to make cascading fors more readable.

Instead of

    for (int i=0; i<=10; i++) {
        for (int j=0; j<=10; j++) {
            System.out.println(i + " " + j + " " + x/100 + "%");
        }
    }

do

    For f1 = new For(0, 10, 1);
    For f2 = new For(0, 10, 1);

    CascadingFors fs = new CascadingFors(f1, f2);
    fs.run(() -> {
        System.out.println(f1.value + " " + f2.value + " " + fs.fmtProgress());
    });

Use

Just download and include the file CascadingFors.java on your project. Don't forget to adjust the package name.

Have fun!

About

Utility class to make cascading fors more readable.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages