Curried decorator
Project description
Simplecurry’s curried provides a simple way to use curried functions in Python. There are alternative implementations, but they are unnecessarily complex.
Example
This is an example on how to use it:
from simplecurry import curried
@curried
def add(a, b, c):
return a + b + c
add(1)(2)(3) # Returns 6
add(1, 2)(3) # Returns 6
add(1)(2, 3) # Returns 6
add(1, 2, 3) # Returns 6
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
simplecurry-1.12.tar.gz
(1.3 kB
view details)
File details
Details for the file simplecurry-1.12.tar.gz.
File metadata
- Download URL: simplecurry-1.12.tar.gz
- Upload date:
- Size: 1.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
906301a828860e186c40a2fed8c7bd1a12a24551c2c26f9d357f86ea16374e05
|
|
| MD5 |
14891c51c431f9ce363f44cb239a6aa7
|
|
| BLAKE2b-256 |
d96277fd0e95da69e193bed7b3ac1fd81070c9821814da26b45290248d33816b
|