streams-utils icon indicating copy to clipboard operation
streams-utils copied to clipboard

Streams Utils is a set of operations written on Java 8 Streams. It allows several basic operations that are not available in the the Java 8, and that have proven to be very useful in some cases. It is...

Results 3 streams-utils issues
Sort by recently updated
recently updated
newest added

ala http://reactivex.io/RxJava/1.x/javadoc/rx/Observable.html#distinct-rx.functions.Func1- ```java stream = Stream.of("a1", "b1", "c2", "c3"); distinct = StreamUtils.distinct(stream, str -> str.charAt(1)); distinct.forEach(x -> System.out.println(x)); ``` prints: ``` a1 c2 c3 ```

it would be nice to include basic usage in the main README.md