コード例 #1
0
ファイル: sorter.go プロジェクト: ahh/remedial
func MSort(v *vec.Vector) {
	c := make(chan int)
	go mhelp(v, 0, v.Size()-1, c)
	<-c
}