Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save mcupak/6eb60f08a812f9d1b804d371443fce44 to your computer and use it in GitHub Desktop.
jshell> Optional.empty().ifPresent(System.out::println)
jshell> Optional.of("something").ifPresent(System.out::println)
something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment