Skip to main content

Generalize functools.singledispatch to multiple arguments.

Project description

========
Overview
========

What is pygeneric?
==================

`pygeneric` implements generic functions based on type dispatch in Python. A generic
function groups different implementations (or methods) under the same name.
The actual implementation is then chosen at runtime depending on the type of
each function argument.

The implementation is loosely inspired in the Julia language. We also shamelessly
steal some other features of Julia and adapted them to Python:

* Parametric types.
* A type conversion/promotion system integrated with arithmetic operations.
* A generic Object base class that delegates all binary operations to the
corresponding generic functions (i.e., instead of implementing
Object.__add__, we overload ``generic.op.add(Object, Object))``.

This package works with Python 3 and Python 2, but it is getting increasingly
more difficult to keep Python 2 support as we implement more advanced features.
Not all functionality works in Python 2, and sometimes extra precautions
are necessary. Pygeneric cannot handle old style classes and sometimes we are
limited by lack of some Python 3 only syntax. Python 2 also have some quirks
that we do not try to emulate (e.g., broken comparison operators), so pygeneric
uses an uniform Python 3 semantics.


Basic usage
===========

Most of the functionality present in this package works around the type dispatch
in generic functions. We declare a generic function using the syntax

.. code-block:: python

from generic import generic, Number, Sequence

@generic
def func(x, y):
print('Got %r and %r' % (x, y))


Type dispatch can be defined as

.. code-block:: python

@func.register(Number, Number)
def _(x, y):
print('Got two numbers: %r and %r' % (x, y))


or

.. code-block:: python

@func.overload
def _(x: Number, y: Number):
print('Got two numbers: %r and %r' % (x, y))



Depending on the types of each argument, the dispatcher will choose either one
of those two implementations

>>> func(42, 0.0)
Got two numbers: 42 and 0.0
>>> func("foo", "bar")
Got 'foo' and 'bar'


The type dispatch always chooses the most specialized method for the given
argument types.

Consider the two specialized dispatches

.. code-block:: python

from numbers import Integral

@func.overload
def _(x: Integral, y: Number):
print('Got one integer: %r and %s' % (x, y))

@func.overload
def _(x: Integral, y: Integral):
print('Got two integers: %r and %s' % (x, y))


``func`` knows what to do

>>> func(1, 2)
Got two integers: 1 and 2
>>> func(1, 2.0)
Got one integer: 1 and 2.0
>>> func(2.0, 1)
Got two numbers: 2.0 and 1


Further information
===================

Did you find this feature useful? Then start using pygeneric now!
Check the documentation__ for additional information.

.. __documentation:: http://pythonhosted.org/pygeneric/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygeneric-1.0.0b0.tar.gz (39.7 kB view details)

Uploaded Source

File details

Details for the file pygeneric-1.0.0b0.tar.gz.

File metadata

  • Download URL: pygeneric-1.0.0b0.tar.gz
  • Upload date:
  • Size: 39.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for pygeneric-1.0.0b0.tar.gz
Algorithm Hash digest
SHA256 6db44dbc9b3cd7e849eab7c08fe58806326204f0dab1db103d181f762d9c7124
MD5 afd089bdea0ba567c0d5f64d24552f8b
BLAKE2b-256 18bba2efa800e98b94f4378b54a6d4330d29eab7a4616bc0e78602290e6f1dab

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page