type golang.org/x/pkgsite/internal.SymbolHistory

21 uses

	golang.org/x/pkgsite/internal (current package)
		symbol.go#L81: type SymbolHistory struct {
		symbol.go#L97: func NewSymbolHistory() *SymbolHistory {
		symbol.go#L98: 	return &SymbolHistory{
		symbol.go#L105: func (sh *SymbolHistory) SymbolsAtVersion(v string) map[string]map[SymbolMeta]*SymbolBuildContexts {
		symbol.go#L111: func (sh *SymbolHistory) Versions() []string {
		symbol.go#L123: func (sh *SymbolHistory) GetSymbol(name, v string, build BuildContext) (_ *SymbolMeta, err error) {
		symbol.go#L142: func (sh *SymbolHistory) AddSymbol(sm SymbolMeta, v string, build BuildContext) {

	golang.org/x/pkgsite/internal/frontend
		symbol.go#L297: func ParseVersionsDetails(vd VersionsDetails) (_ *internal.SymbolHistory, err error) {
		symbol.go#L320: func addSymbol(s *Symbol, v string, sh *internal.SymbolHistory, builds []string) {
		versions.go#L142: 	sh *internal.SymbolHistory,

	golang.org/x/pkgsite/internal/postgres
		package_symbol.go#L23: ) (_ *internal.SymbolHistory, err error) {
		package_symbol.go#L43: 	sh, collect := collectSymbolHistory(func(sh *internal.SymbolHistory, sm internal.SymbolMeta, v string, build internal.BuildContext) error {
		package_symbol.go#L74: func collectSymbolHistory(check func(sh *internal.SymbolHistory, sm internal.SymbolMeta, v string, build internal.BuildContext) error) (*internal.SymbolHistory, func(rows *sql.Rows) error) {
		symbol_history.go#L25: ) (_ *internal.SymbolHistory, err error) {
		symbol_history.go#L42: 	packagePath, modulePath string) (_ *internal.SymbolHistory, err error) {
		symbol_history.go#L67: 	sh, collect := collectSymbolHistory(func(*internal.SymbolHistory, internal.SymbolMeta, string, internal.BuildContext) error { return nil })
		symbol_history.go#L80: 	packagePath, modulePath string) (_ *internal.SymbolHistory, err error) {

	golang.org/x/pkgsite/internal/symbol
		compare.go#L18: func CompareAPIVersions(path string, apiVersions pkgAPIVersions, inSH *internal.SymbolHistory) ([]string, error) {
		intro.go#L16: func IntroducedHistory(sh *internal.SymbolHistory) (outSH *internal.SymbolHistory, err error) {