Skip to content

Instantly share code, notes, and snippets.

@zivce
Last active February 17, 2022 14:16
Show Gist options
  • Save zivce/f101538b7d6309870d74a9b561706027 to your computer and use it in GitHub Desktop.
Save zivce/f101538b7d6309870d74a9b561706027 to your computer and use it in GitHub Desktop.
How to not create ifNotPresent in Java
Optional.of(opt).map(value -> { System.out.println(value);
return value; })
.orElseGet(() -> { System.out.println("not present");
return -1;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment