예제 #1
0
파일: g.go 프로젝트: tcard/meta
func ChanIn(of meta.Type) *meta.ChanType {
	return meta.NewChanType(of, meta.In)
}
예제 #2
0
파일: g.go 프로젝트: tcard/meta
func OutChan(of meta.Type) *meta.ChanType {
	return meta.NewChanType(of, meta.Out)
}
예제 #3
0
파일: g.go 프로젝트: tcard/meta
func Chan(of meta.Type) *meta.ChanType {
	return meta.NewChanType(of, meta.Both)
}