Guest User

Untitled

a guest
Jun 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. def programOptional(id: Long): Info = {
  2. val user = optional(getUser)(id)
  3. val info = optional(getInfo)(user)
  4. info
  5. }
  6.  
  7. programOptional(123) // res3: Info = Info(Tom)
  8. programOptional(1234) // res4: Info = null
Add Comment
Please, Sign In to add comment