Skip to content

Instantly share code, notes, and snippets.

@Mreyna3
Last active May 26, 2019 20:19
Show Gist options
  • Save Mreyna3/c4f443859f5c66dd030f29dbb222099d to your computer and use it in GitHub Desktop.
Save Mreyna3/c4f443859f5c66dd030f29dbb222099d to your computer and use it in GitHub Desktop.
private func shouldProcessBatch() -> Bool{
//1
guard batchSum < BATCH_CAP else {
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment