Skip to content

jameskeane/lamderp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lamderp

Simple easy python lambda DSL

Usage

Lambderp is very easy to use, and models small lambda functions easily.

from lamderp import _

identity = _
even = filter(_ % 2 == 0, range(50))
odd = filter(_ % 2 == 1, range(50))

square = _ ** 2

Install

pip install lamderp

Why

Python lambda syntax is ugly and makes functional programming painful.

About

Simple easy python lambda DSL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages