JavaDash

A modern Java utility library delivering modularity, performance & extras.


  import java.util.*;
  import static io.javadash.CollectionUtils.chunk;
  public class Main {
    public static void main(String[] args) {
      List<String> input = Arrays.asList("a", "b", "c", "d");
      int size = 2;
      List<List<String>> result = chunk(input, size);
      System.out.println(result);
    }
  }
  

Download

JavaDash is released under the MIT license & supports modern environments.

Repository

JavaDash is released on the Maven Central Repository

Sponsored

This library is sponsored by ByPay Corporation.

Source

Github

Installation

Use Maven:

  <dependency>
    <groupId>io.github.bypaycorporation</groupId>
    <artifactId>javadash</artifactId>
    <version>1.0.2</version>
  </dependency>

Use Gradle:

implementation 'io.github.bypaycorporation:javadash:1.0.2'

Why JavaDash?

JavaDash makes Java easier by taking the hassle out of working with collections, maths, langs, dates, strings, etc. JavaDash’s modular methods are great for:

Further Reading

Support

Tested in Java 8+.