Skip to content

Instantly share code, notes, and snippets.

View gmonk's full-sized avatar

gmonk gmonk

View GitHub Profile
@VojtechVitek
VojtechVitek / slice-batch-in-parallel.go
Last active December 25, 2023 09:42
Golang - Loop over slice in batches (run something in parallel on a sub-slice)
package main
import "fmt"
func main() {
slice := make([]int, 159)
// Split the slice into batches of 20 items.
batch := 20