Skip to content

Instantly share code, notes, and snippets.

@czars
Created September 24, 2019 08:36
Show Gist options
  • Save czars/79f6a8e26fc905fc14f1c28e12e6c416 to your computer and use it in GitHub Desktop.
Save czars/79f6a8e26fc905fc14f1c28e12e6c416 to your computer and use it in GitHub Desktop.
split array into chunks of array
extension Array {
func chunked(into size: Int) -> [[Element]] {
return stride(from: 0, to: count, by: size).map {
Array(self[$0 ..< Swift.min($0 + size, count)])
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment