Top "Single-dispatch" questions

A language feature which allows different versions of a function to be called depending on the type of one argument.

How can I use functools.singledispatch with instance methods?

Python 3.4 added the ability to define function overloading with static methods. This is essentially the example from the documentation: from …

python python-3.x python-3.4 instance-method single-dispatch
Is C# a single dispatch or multiple dispatch language?

I'm trying to understand what single and multiple dispatch are, exactly. I just read this: http://en.wikipedia.org/wiki/…

c# programming-languages multiple-dispatch single-dispatch