2010-07-19 13:21:14 +04:00
2010-07-19 13:21:14 +04:00
2010-07-19 13:20:20 +04:00
2010-07-19 13:21:14 +04:00
2010-07-16 19:53:29 +04:00

Generic programming library for Python
======================================

Generic is trying to be simple and easy-to-use programming library that
features the following:

* Multidispatching mechanisms for functions and methods (latter is not
  implemented yet).
* Registries with different and user-defined lookup strategies.
* Event system (not implemented).

Its development takes place at http://github.com/andreypopp.

Multidispatching
----------------

Generic library provides way to define function with multidispatching feature::

    from generic.multidispatching import multifunction

    @multifunction(int, int)
    def add(x, y):
        return x + y

    @add.when(str, str)
    def add(x, y):
        return add(int(x), int(y))

And then in console::

    >>> add(1, 2)
    3
    >>> add("1", "2")
    3
    >>> add("1", 2)
    Traceback
    ...
    TypeError: ...
Description
No description provided
Readme 1.3 MiB
Languages
Python 100%