コード例 #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)
}