solid icon indicating copy to clipboard operation
solid copied to clipboard

Lightweight data streams and immutable collections for Android

Results 1 solid issues
Sort by recently updated
recently updated
newest added

Let's you convert an Optional to a Stream. Useful if you have a ```@Nullable``` list. Instead of this ``` private static Stream stream(@Nullable T object) { return Optional.of(object).map(value -> {...