gitextract_ml7ttqty/ ├── .gitignore ├── LICENSE ├── README.md ├── doc.go ├── go.mod ├── go.sum ├── internal/ │ └── internal.go ├── parallel/ │ ├── example_heatdistribution_test.go │ ├── parallel.go │ └── parallel_test.go ├── pipeline/ │ ├── example_wordcount_test.go │ ├── filter.go │ ├── filters.go │ ├── lparnode.go │ ├── parnode.go │ ├── pipeline.go │ ├── seqnode.go │ ├── source.go │ └── strictordnode.go ├── sequential/ │ └── sequential.go ├── sort/ │ ├── example_interface_test.go │ ├── mergesort.go │ ├── quicksort.go │ ├── sort.go │ └── sort_test.go ├── speculative/ │ └── speculative.go └── sync/ └── map.go