Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created November 11, 2017 05:52
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/fefee3aa6890b69e5057cd6f127a70ed to your computer and use it in GitHub Desktop.
Save mcupak/fefee3aa6890b69e5057cd6f127a70ed to your computer and use it in GitHub Desktop.
jshell> Optional.of("something").stream().forEach(System.out::println)
something
jshell> Optional.empty().stream().forEach(System.out::println)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment