go/doc.Type.Funcs (field)

7 uses

	go/doc (current package)
		doc.go#L62: 	Funcs   []*Func  // sorted list of functions returning this type
		doc.go#L168: 		p.collectFuncs(t.Funcs)
		example.go#L642: 		for _, f := range t.Funcs {
		filter.go#L86: 			td.Funcs = filterFuncs(td.Funcs, f)
		filter.go#L88: 			n += len(td.Consts) + len(td.Vars) + len(td.Funcs) + len(td.Methods)
		reader.go#L873: 			Funcs:   sortedFuncs(t.funcs, true),