Skip to main content

A library to inject common functional programming operations as methods into iterable objects.

Project description

A library to inject common functional programming operations as methods into iterable objects. Currently, it supports map operation.

Getting the library

The library can be installed via pip install funcipy. Similarly, it can be uninstalled via pip uninstall funcipy.

Usage

When you want to inject common functional programming operations as methods into an object O, invoke funcipy.funcipy.funcify function with O as the argument. If O is iterable, then the function will return an object that

  1. provides the same interface as the input object and

  2. has functional programming operations as methods.

Otherwise, O is returned as is.

Here are few example invocations.

from funcipy.funcipy import funcify

i = range(1, 10)
print("Map function: " + ' '.join(map(str, i)]))
tmp1 = funcify(i)
print("Map function applied to funcified object: " + ' '.join(map(str, tmp1)))
print("Map method: " + ' '.join(tmp1.map(str)]))
print("Map method chaining: " + ' '.join(tmp1.map(str).map(lambda x: x * 2)))

Attribution

Copyright (c) 2017, Venkatesh-Prasad Ranganath

Licensed under BSD 3-clause “New” or “Revised” License (https://choosealicense.com/licenses/bsd-3-clause/)

Authors: Venkatesh-Prasad Ranganath

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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

funcipy-0.1-py2.py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 2 Python 3

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