Advertisement
Guest User

Untitled

a guest
May 23rd, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def f4(implicit v: T) = ...
  2. def f5(implicit v: T) = ...
  3.  
  4. for {
  5. v1 <- f1
  6. v2 <- f2
  7. implicit v3 <- f3
  8. v4 <- f4
  9. v5 <- f5
  10. } yield { ... }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement