diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-10-05 11:19:03 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-10-05 11:19:03 -0400 |
commit | 930535874caa168e9654521e8c7d77e89d0ee64e (patch) | |
tree | f74c610df1074c86a258ed9f38a86e30b661adbd /posts | |
parent | 054a0c432df3224a438126d3d0678f7c32c41746 (diff) |
Fix a link in latest post.
Diffstat (limited to 'posts')
-rw-r--r-- | posts/2022-10-05-goops-issues.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/posts/2022-10-05-goops-issues.md b/posts/2022-10-05-goops-issues.md index e351ca8..a85c552 100644 --- a/posts/2022-10-05-goops-issues.md +++ b/posts/2022-10-05-goops-issues.md @@ -209,12 +209,12 @@ non-trivial programs. What if a child class wanted to specialize just the formal greeting? It would require another `case` form with an `else` clause that calls `next-method`. It works but it takes extra code and it doesn't look as nice, IMO. It would be good to take -inspiration from -[https://github.com/sbcl/specializable/](specializable) since it -allows for user extendable specializers. A similar system could be -added to GOOPS methods. More advanced method argument specializers -would be a nice complement to the excellent `(ice-9 match)` -general-purpose pattern matching module. +inspiration from [SBCL's specializable +library](https://github.com/sbcl/specializable/) since it allows for +user extendable specializers. A similar system could be added to +GOOPS methods. More advanced method argument specializers would be a +nice complement to the excellent `(ice-9 match)` general-purpose +pattern matching module. ## Methods do not support keyword arguments |