lefticus / cpp_weekly

The official C++ Weekly Repository. Code samples and notes of future / past episodes will land here at various times. PR's will be accepted in some cases.
The Unlicense
688 stars 26 forks source link

What is multi method dispatch? #400

Closed lefticus closed 1 month ago

lefticus commented 1 month ago

https://en.wikipedia.org/wiki/Multiple_dispatch#Examples

The idea:

https://compiler-explorer.com/z/9KabY1ojv

With Variant:

https://compiler-explorer.com/z/sasMvE9W9

lefticus commented 1 month ago

First example in video: https://compiler-explorer.com/z/dcGMh5q1r

Second example in vido: https://compiler-explorer.com/z/nPnE7PGGn

lefticus commented 1 month ago

Coming in Episode 441