Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Ghost-Programmer's full-sized avatar

Jeffery Miller Ghost-Programmer

View GitHub Profile
@Ghost-Programmer
Ghost-Programmer / ListUtils.java
Last active April 13, 2020 15:56
Utility Class for lists.
package name.mymiller.utils;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
/**
* @author jmiller Provide a set of utilities to use on lists.
*/
public class ListUtils {