Skip to main content

Python decorators for pattern matching function dispatch

Project description

Overview

Functional style ‘list’ and ‘dict’ classes & decorators for pattern matching function dispatch.

For more information, visit http://www.systemical.com/doc/opensource/pyfnc

Examples

Dictionary class ‘dic’ with ‘return self’ functionality:

>>> d=dic({"k2":"v2"})
>>> dr=d.update({"k1":"v1"})
>>> self.assertEqual(d, dr)

List class ‘liste’ with ‘return self’ functionality and integrated ‘map’, ‘reduce’ and ‘filter’ functions:

>>> l=liste()
>>> lr=l.extend([1,2,3])
>>> self.assertEqual(len(l), 3)
>>> self.assertEqual(l, lr)
>>> f=lambda x:x+10
>>> lm=l.map(f)
>>> self.assertEqual(lm, [11, 12, 13])
>>> self.assertEqual(l, [11, 12, 13])

Erlang style function dispatch:

>>> @pattern('male', str)
... def greet_male(p1, p2):
...     return "Hello M. %s!" % p2
>>> @pattern('female', str)
... def greet_female(p1, p2):
...        return "Hello Mrs. %s!" % p2
>>> @patterned
... def greet(p1, p2):
...    pass
>>> print greet("male", "Dupont")
"Hello M. Dupont!"
>>> print greet("female", "Corriveau")
"Hello Mrs. Corriveau!"

Tests

Tests can be performed using nosetests in the root directory.

Project details


Download files

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

Source Distributions

pyfnc-0.1.0.zip (11.5 kB view hashes)

Uploaded Source

pyfnc-0.1.0.tar.gz (6.3 kB view hashes)

Uploaded Source

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