type go/types.TypeList

10 uses

	go/types (current package)
		api.go#L378: 	TypeArgs *TypeList
		named.go#L20: 	targs      *TypeList      // type arguments (after instantiation), or nil
		named.go#L125: func (t *Named) TypeArgs() *TypeList { return t.targs }
		typelists.go#L28: type TypeList struct{ types []Type }
		typelists.go#L31: func newTypeList(list []Type) *TypeList {
		typelists.go#L35: 	return &TypeList{list}
		typelists.go#L40: func (l *TypeList) Len() int { return len(l.list()) }
		typelists.go#L43: func (l *TypeList) At(i int) Type { return l.types[i] }
		typelists.go#L48: func (l *TypeList) list() []Type {

	golang.org/x/tools/internal/typeparams
		typeparams_go118.go#L41: type TypeList = types.TypeList