- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for RecvTypeParams (0.17 sec)
-
api/go1.18.txt
pkg go/types, method (*Named) SetTypeParams([]*TypeParam) pkg go/types, method (*Named) TypeArgs() *TypeList pkg go/types, method (*Named) TypeParams() *TypeParamList pkg go/types, method (*Signature) RecvTypeParams() *TypeParamList pkg go/types, method (*Signature) TypeParams() *TypeParamList pkg go/types, method (*Term) String() string pkg go/types, method (*Term) Tilde() bool pkg go/types, method (*Term) Type() Type
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 13K bytes - Viewed (0) -
src/cmd/api/main_test.go
base = p.Elem() } if obj := base.(*types.Named).Obj(); !obj.Exported() { log.Fatalf("exported method with unexported receiver base type: %s", m) } } tps := "" if rtp := sig.RecvTypeParams(); rtp != nil { var buf bytes.Buffer w.writeTypeParams(&buf, rtp, false) tps = buf.String() } if w.isDeprecated(m.Obj()) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 31.4K bytes - Viewed (0)