Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created November 11, 2017 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcupak/abe8b1da8140e6e9e33cacf4d5fdce7f to your computer and use it in GitHub Desktop.
Save mcupak/abe8b1da8140e6e9e33cacf4d5fdce7f to your computer and use it in GitHub Desktop.
jshell> Optional.of("something").or(() -> Optional.of("empty"))
$9 ==> Optional[something]
jshell> Optional.empty().or(() -> Optional.of("empty"))
$10 ==> Optional[empty]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment