- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TypeParamList (0.23 sec)
-
api/go1.24.txt
pkg go/types, method (*Struct) Fields() iter.Seq[*Var] #66626 pkg go/types, method (*Tuple) Variables() iter.Seq[*Var] #66626 pkg go/types, method (*TypeList) Types() iter.Seq[Type] #66626 pkg go/types, method (*TypeParamList) TypeParams() iter.Seq[*TypeParam] #66626 pkg go/types, method (*Union) Terms() iter.Seq[*Term] #66626 pkg hash/maphash, func Comparable[$0 comparable](Seed, $0) uint64 #54670
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Dec 17 21:28:29 UTC 2024 - 14.2K bytes - Viewed (0) -
src/cmd/api/main_test.go
buf.WriteByte(' ') w.writeType(buf, res.At(0).Type()) default: buf.WriteByte(' ') w.writeParams(buf, res, false) } } func (w *Walker) writeTypeParams(buf *bytes.Buffer, tparams *types.TypeParamList, withConstraints bool) { buf.WriteByte('[') c := tparams.Len() for i := 0; i < c; i++ { if i > 0 { buf.WriteString(", ") } tp := tparams.At(i) w.writeType(buf, tp)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Feb 20 03:25:33 UTC 2025 - 31.4K bytes - Viewed (0) -
doc/go_spec.html
in square brackets rather than parentheses [<a href="#Go_1.18">Go 1.18</a>]. </p> <pre class="ebnf"> TypeParameters = "[" TypeParamList [ "," ] "]" . TypeParamList = TypeParamDecl { "," TypeParamDecl } . TypeParamDecl = IdentifierList TypeConstraint . </pre> <p> All non-blank names in the list must be unique.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0)