Understanding multiple dispatch

It is possible to get multiple dispatch in Python: multipledispatch · PyPI

I don’t know how well it works. But the things that make multiple dispatch great in Julia are that it is used everywhere, and that it is fast, so there’s no performance penalty for using it. I don’t know how efficient the python implementation is, but MD is certainly not going to be pervasive in Python for a long time, if ever.

4 Likes