go/types.Array.Len (method)

12 uses

	go/types (current package)
		array.go#L22: func (a *Array) Len() int64 { return a.len }

	go.pact.im/x/plumb/internal/gotypes
		cmp.go#L50: 		if c := cmp.Compare(a.Len(), b.Len()); c != 0 {
		subst.go#L48: 		return types.NewArray(s.subst(u.Elem()), u.Len())
		unify.go#L36: 		return ok && p.Len() == c.Len() && Unify(p.Elem(), c.Elem(), params, bind)

	golang.org/x/exp/apidiff
		correspondence.go#L41: 			return d.corr(old.Elem(), new.Elem(), p) && old.Len() == new.Len()

	golang.org/x/tools/go/types/typeutil
		map.go#L231: 		return 9043 + 2*uint32(t.Len()) + 3*h.hash(t.Elem())
		map.go#L429: 		return 1524181 + 2*uint32(t.Len())

	golang.org/x/tools/internal/gcimporter
		iexport.go#L1053: 		w.uint64(uint64(t.Len()))

	golang.org/x/tools/internal/typesinternal
		zerovalue.go#L233: 				Value: fmt.Sprintf("%d", t.Len()),