Multiple argument dispatching.
Project description
Multimethod provides a decorator for adding multiple argument dispatching to functions. The decorator finds the multimethod of the same name, creating it if necessary, and registers the function with its annotations.
There are several multiple dispatch libraries on PyPI. This one aims for simplicity and speed. With caching of argument types, it should be the fastest pure Python implementation possible.
Usage
multimethod
from multimethod import multimethod
@multimethod
def func(x: int, y: float):
...
func is now a multimethod which will delegate to the above function,
when called with arguments of the specified types.
Subsequent usage will register new types and functions to the existing multimethod of the same name.
If an exact match isn't registered, the next closest method is called (and cached).
Candidate methods are ranked based on their subclass relationships.
If no matches are found, a custom TypeError is raised.
A strict flag can also be set on the multimethod object,
in which case finding multiple matches also raises a TypeError.
Keyword arguments can be used when calling, but won't affect the dispatching.
If no annotations are specified, it will inherently match any aruments.
Multimethods are implemented as mappings from signatures to functions, and can be introspected as such.
method[type, ...] # get registered function
method[type, ...] = func # register function by explicit types
method.register(func) # decorator to register annotated function (with any __name__)
multidispatch
The functools.singledispatch
style syntax is also supported. This requires creating a multidispatch object explicitly,
and consequently doesn't rely on the name matching.
The register method returns a decorator for given types,
thereby supporting Python 2 and stacking of multiple signatures.
from multimethod import multidispatch
@multidispatch
def func(*args):
...
@func.register(object, int)
@func.register(int, object)
def _(*args):
...
overload
Overloads dispatch on annotated predicates. Each predicate is checked in the reverse order of registration.
The implementation is separate from multimethod due to the different performance characteristics.
Instead a simple isa predicate is provided for checking instance type.
from multimethod import overload
@overload
def func(obj: isa(str)):
...
@overload
def func(obj: str.isalnum):
...
@overload
def func(obj: str.isdigit):
...
Installation
$ pip install multimethod
Tests
100% branch coverage.
$ pytest [--cov]
Changes
1.0
- Missing annotations default to object
- Removed deprecated dispatch stacking
0.7
- Forward references allowed in type hints
- Register method
- Overloads with predicate dispatch
0.6
- Multimethods can be defined inside a class
0.5
- Optimized dispatching
- Support for
functools.singledispatchsyntax
0.4
- Dispatch on Python 3 annotations
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file multimethod-1.0.tar.gz.
File metadata
- Download URL: multimethod-1.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2749fca0e36c817be90fa62ca10d60c6fd8d09dcec65aca33be0e7a1e82b8ecb
|
|
| MD5 |
fb6cdc2368e9893564c69aefadd6293a
|
|
| BLAKE2b-256 |
40ac0195b2ae0665e221c40e2a9200bb19f643ef256e9b5d4108d51c0165b284
|
File details
Details for the file multimethod-1.0-py2.py3-none-any.whl.
File metadata
- Download URL: multimethod-1.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f20db508dfb95aa2b135299a436a68342ccfc2c275b6636b6306de435c01d66
|
|
| MD5 |
1395b54d4f5b04c20210e32c4af73a53
|
|
| BLAKE2b-256 |
d0984c9a1fe8c0383e944efcb0e9b157ea253f49ec691f310c484b1a8b8585d5
|