type go/doc.Value

15 uses

	go/doc (current package)
		doc.go#L30: 	Consts []*Value
		doc.go#L32: 	Vars   []*Value
		doc.go#L45: type Value struct {
		doc.go#L60: 	Consts  []*Value // sorted list of constants of (mostly) this type
		doc.go#L61: 	Vars    []*Value // sorted list of variables of (mostly) this type
		doc.go#L151: func (p *Package) collectValues(values []*Value) {
		filter.go#L54: func filterValues(a []*Value, f Filter) []*Value {
		reader.go#L163: 	values  []*Value // consts and vars
		reader.go#L191: 	values []*Value // consts and vars
		reader.go#L330: 	*values = append(*values, &Value{
		reader.go#L841: func sortedValues(m []*Value, tok token.Token) []*Value {
		reader.go#L842: 	list := make([]*Value, len(m)) // big enough in any case
		reader.go#L852: 	slices.SortFunc(list, func(a, b *Value) int {