Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created November 11, 2017 05:51
Show Gist options
  • Select an option

  • Save mcupak/ba6aace57616104d3d1ae1636c00aed0 to your computer and use it in GitHub Desktop.

Select an option

Save mcupak/ba6aace57616104d3d1ae1636c00aed0 to your computer and use it in GitHub Desktop.
jshell> Optional.of("something").orElseGet(() -> "empty")
$7 ==> "something"
jshell> Optional.empty().orElseGet(() -> "empty")
$8 ==> "empty"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment