channel/internal_stuff.go

13 lines
178 B
Go
Raw Permalink Normal View History

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