Searched defs:MethodSet (Results 1 – 2 of 2) sorted by relevance
18 type MethodSet struct { struct19 list []*Selection22 func (s *MethodSet) String() string {37 func (s *MethodSet) Len() int { return len(s.list) }40 func (s *MethodSet) At(i int) *Selection { return s.list[i] }43 func (s *MethodSet) Lookup(pkg *Package, name string) *Selection {
30 func (cache *MethodSetCache) MethodSet(T types.Type) *types.MethodSet { func