Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more references to "See also" #6

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,16 @@ This is very likely due to underlying `min_specialization` implementation not
being very mature yet, though it's quite possible I botched something somewhere
(Please file an issue if you figure out which :P).

## Also see

- [sagebind/castaway](https://github.com/sagebind/castaway): Safe, zero-cost
downcasting for limited compile-time specialization. This is an awesome
library I've just stumbled upon, which seems to be doing what is done here in
a more robust and stable way.
## See also

- [sagebind/castaway]: Safe, zero-cost downcasting for limited compile-time
specialization. This is an awesome library I've just stumbled upon, which
seems to be doing what is done here in a more robust and stable way.
- [Autoref-based stable specialization]: A detailed case study for various methods
of specialization, introducing "autoref-based specalization".
- [Generalized Autoref-Based Specialization]: Another method called
"*autoderef*-based specialization" which builds on top of the article above.

[sagebind/castaway]: https://github.com/sagebind/castaway
[Autoref-based stable specialization]: https://github.com/dtolnay/case-studies/tree/master/autoref-specialization
[Generalized Autoref-Based Specialization]: https://lukaskalbertodt.github.io/2019/12/05/generalized-autoref-based-specialization.html
Loading