D | structs.go | 15 StructD struct{ X string } // Equal method (with interface argument) on pointer receiver argument 33 StructD anonMember 59 *StructD anonMember 83 func (x *StructD) Equal(y InterfaceA) bool { return true } argument 84 func (x *StructD) InterfaceA() {} argument 97 a StructA, b StructB, c StructC, d StructD, e StructE, f StructF, 98 ap *StructA, bp *StructB, cp *StructC, dp *StructD, ep *StructE, fp *StructF,
|