Guest User

Untitled

a guest
Apr 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #if swift(>=4.1)
  2. #else
  3. extension Collection {
  4. func compactMap<ElementOfResult>(
  5. _ transform: (Element) throws -> ElementOfResult?
  6. ) rethrows -> [ElementOfResult] {
  7. return try flatMap(transform)
  8. }
  9. }
  10. #endif
Add Comment
Please, Sign In to add comment