Guest User

Untitled

a guest
Apr 25th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class Test {
  2. var amountLeftToDownload: Int
  3. var amountDownloaded: Int
  4.  
  5. init(amountLeftToDownload: Int, amountDownloaded: Int) {
  6. self.amountLeftToDownload = amountLeftToDownload
  7. self.amountDownloaded = amountDownloaded
  8. }
  9. }
  10.  
  11. let totalDownloadsToProcess = progress.reduce(0) {$0.amountLeftToDownload, $0.amountDownloaded }
Add Comment
Please, Sign In to add comment