diff options
-rw-r--r-- | content/posts/2022-01-17-generics-in-go-1.18.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/posts/2022-01-17-generics-in-go-1.18.md b/content/posts/2022-01-17-generics-in-go-1.18.md index 1a44b03..256312b 100644 --- a/content/posts/2022-01-17-generics-in-go-1.18.md +++ b/content/posts/2022-01-17-generics-in-go-1.18.md @@ -305,6 +305,7 @@ Other useful tidbits: * The standard library is still backwards compatible, so there is no need to rewrite your existing code. * There are [two new tutorials][] which explain generics and fuzzing. +* [Go type constraints spec][spec] **Update (2021-01-19):** Minor wording changes, add information about tilde prefixes in type constraints. @@ -325,3 +326,5 @@ tilde prefixes in type constraints. "Type erasure." [two new tutorials]: https://go.dev/blog/tutorials-go1.18 "New Go tutorials which explain generics and fuzzing." +[spec]: https://tip.golang.org/ref/spec#Type_constraints + "Type constraints section of Go specification." |