type go/doc.Func

16 uses

	go/doc (current package)
		doc.go#L33: 	Funcs  []*Func
		doc.go#L62: 	Funcs   []*Func  // sorted list of functions returning this type
		doc.go#L63: 	Methods []*Func  // sorted list of methods (including embedded ones) of this type
		doc.go#L72: type Func struct {
		doc.go#L173: func (p *Package) collectFuncs(funcs []*Func) {
		filter.go#L65: func filterFuncs(a []*Func, f Filter) []*Func {
		reader.go#L28: type methodSet map[string]*Func
		reader.go#L90: 	mset[name] = &Func{
		reader.go#L105: func (mset methodSet) add(m *Func) {
		reader.go#L113: 		mset[m.Name] = &Func{
		reader.go#L697: func customizeRecv(f *Func, recvTypeName string, embeddedIsPtr bool, level int) *Func {
		reader.go#L893: func sortedFuncs(m methodSet, allMethods bool) []*Func {
		reader.go#L894: 	list := make([]*Func, len(m))
		reader.go#L909: 	slices.SortFunc(list, func(a, b *Func) int {