Skip to main content

A short description for your project.

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 in Python 3 as

.. code-block:: python

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


The Python 2-friendly syntax (which can also be useful in Python 3) is:

.. code-block:: python

@func.register(Sequence, Sequence)
def func(x, y):
print('Got two sequences: %r and %r' % (x, y))


Depending on the types of each argument, the dispatcher will choose either one
of these three implementations

>>> func(42, 0.0)
Got two numbers: 42 and 0.0
>>> func([1, 2], (3, 4))
Got two sequences: [1, 2] and (3, 4)
>>> func("foo", "bar")
Got two sequences: '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 func(x: Integral, y: Number):
print('Got one integer: %r and %s' % (x, y))

@func.overload
def func(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-0.5.6.tar.gz (146.1 kB view details)

Uploaded Source

File details

Details for the file pygeneric-0.5.6.tar.gz.

File metadata

  • Download URL: pygeneric-0.5.6.tar.gz
  • Upload date:
  • Size: 146.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pygeneric-0.5.6.tar.gz
Algorithm Hash digest
SHA256 d7d420a1652780e4abb23bdf2c8cc4b7de380a54008280f3dfeb3fdbbb02a8dc
MD5 f00e5f72c87a7139bd073e725750d373
BLAKE2b-256 f0eea954d9b2fccad8eba64722905ea801607d104a465d92040c1323512c574a

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