package channel import "runtime" type mapEntry[K comparable, V any] struct { Key K Value V } func getDefaultRunner() Runner { return NewLimitedRunner(runtime.NumCPU()) }