Versions in this module Expand all Collapse all v1 v1.0.0 Nov 4, 2025 Changes in this version + func ParallelForEach[T any](data []T, fn func(T), workers int) + func ParallelMap[T, R any](data []T, fn func(T) R, workers int) []R + func ParallelReduce[T, R any](data []T, fn func(T, R) R, initial R, combiner func(R, R) R, workers int) R + type Pool struct + func NewPool(workers int) *Pool + func (p *Pool) Close() + func (p *Pool) Submit(fn func()) + func (p *Pool) Wait()