I'm searching for an elegant way to stream only non-empty Optional
entries using the StreamEx library. Or the standard library, if it's possible.
Currently I'm using the following, rather verbose, approach:
List<Optional<String>> list =
Arrays.asList(Optional.of("A"), Optional.empty(), Optional.of("B"));
List<String> nonEmpty =
StreamEx.of(list).filter(Optional::isPresent).map(Optional::get).toList();
I'm essentially looking for something like StreamEx's nonNull
method, but for Optional
.