aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-01-19 18:03:46 -0500
committerPaul Duncan <pabs@pablotron.org>2022-01-19 18:03:46 -0500
commit0ba4dda920185d40de0d7ae18d5b867ae39cef89 (patch)
tree7974ab65775da6220163bb2d341322ae77d44b36
parent0c53fd590e8a5885ce9ee4045c06119e48660b25 (diff)
downloadpablotron.org-0ba4dda920185d40de0d7ae18d5b867ae39cef89.tar.bz2
pablotron.org-0ba4dda920185d40de0d7ae18d5b867ae39cef89.zip
content/posts/2022-01-17-generics-in-go-1.18.md: add link to spec
-rw-r--r--content/posts/2022-01-17-generics-in-go-1.18.md3
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."