grimborg / simplecurry

A simple way to use curried functions in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A simple way to use curried functions in Python


Languages

Language:Python 100.0%