Guest User

Untitled

a guest
Dec 11th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public Option<String> properFlatMapOptionOfOption(String nullableText) {
  2. Option<String> option = Option
  3. .of(nullableText)
  4. .flatMap(s -> optionWrapper(s));
  5.  
  6. return option;
  7. }
Add Comment
Please, Sign In to add comment