func ChanIn(of meta.Type) *meta.ChanType { return meta.NewChanType(of, meta.In) }
func OutChan(of meta.Type) *meta.ChanType { return meta.NewChanType(of, meta.Out) }
func Chan(of meta.Type) *meta.ChanType { return meta.NewChanType(of, meta.Both) }