We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I'm the maintainer of multimethod. As of v1.10, it supports default values as described in the comparison doc. Thanks.
from multimethod import multimethod @multimethod def f(x: int, y: int = 1): return y >>> f(1, 1) 1 >>> f(1, 1.0) DispatchError: ('f: 0 methods found', [])
The text was updated successfully, but these errors were encountered:
Hey @coady! Thanks for opening an issue to point this out. We will adjust the docs shortly and let you know when that’s done. :)
Sorry, something went wrong.
463e792
I've removed the respective session from the docs. Thanks again for pointing this out!
No branches or pull requests
Hi, I'm the maintainer of multimethod. As of v1.10, it supports default values as described in the comparison doc. Thanks.
The text was updated successfully, but these errors were encountered: