internal/reflectlite.interfaceType.methods (field)

11 uses

	internal/reflectlite (current package)
		type.go#L238: 	methods []imethod // sorted by hash
		type.go#L698: func (t *interfaceType) NumMethod() int { return len(t.methods) }
		type.go#L735: 	if len(t.methods) == 0 {
		type.go#L754: 		for j := 0; j < len(v.methods); j++ {
		type.go#L755: 			tm := &t.methods[i]
		type.go#L757: 			vm := &v.methods[j]
		type.go#L773: 				if i++; i >= len(t.methods) {
		type.go#L788: 		tm := &t.methods[i]
		type.go#L806: 			if i++; i >= len(t.methods) {
		type.go#L900: 		if len(t.methods) == 0 && len(v.methods) == 0 {