Skip to content

Instantly share code, notes, and snippets.

@bleeckerj
Forked from ericdke/splitBy.swift
Last active March 3, 2018 14:17
Show Gist options
  • Save bleeckerj/9abe349cd57122a0148d45806dbcf4c8 to your computer and use it in GitHub Desktop.
Save bleeckerj/9abe349cd57122a0148d45806dbcf4c8 to your computer and use it in GitHub Desktop.
Swift: split array by chunks of given size
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
extension Array {
func chunks(_ chunkSize: Int) -> [[Element]] {
return stride(from: 0, to: self.count, by: chunkSize).map {
Array(self[$0..<Swift.min($0 + chunkSize, self.count)])
}
}
}
print(chunks) // [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [11, 12]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment