Skip to main content

imitation of let expression like a Haskell.

Project description

[![Build Status](https://travis-ci.org/hachibeeDI/letexpr.png?branch=master)](https://travis-ci.org/hachibeeDI/letexpr)

# letexpr

That is python module imitate `let expression` like a Haskell.

And support lazy evaluation.


# Installation

```bash
$ pip install https://github.com/hachibeeDI/letexpr/archive/master.zip
```


# Example

```python
from letexpr import let, expr

# expr(x) = lambda x: lambda: x

answer = (
let()
| ('x', expr(10))
| ('y', expr(20))
| ('size', lambda x, y: x * y)
| ('hoge', lambda x, y: 'fooo')
).in_(lambda x, y, size:
'x = {x}, y = {y}, x * y = {size}'.format(x=x, y=y, size=size))
print answer
# => 'x = 10, y = 20, x * y = 200'


# with List Comprehensions
even_or_odd = [
(let()
| ('_i', expr(str(i)))
| ('r', expr('even' if i % 2 == 0 else 'odd'))
).in_(lambda _i, r:
_i + ' is an ' + r + ' number.')
for i in range(1, 5)]
print even_or_odd
# => ['1 is odd number.', '2 is even number.', '3 is odd number.', '4 is even number.']


# with anonymous function
let_ = (let()
| ('x', expr('x'))
| ('y', expr('y'))
)
@let_.in_()
def _(x, y):
return x + y
print let_.end
# => 'xy'

```

# Testing


```bash
$ pip install nose
$ nosetests --with-doctest
```

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

letexpr-0.3.5.tar.gz (3.3 kB view details)

Uploaded Source

File details

Details for the file letexpr-0.3.5.tar.gz.

File metadata

  • Download URL: letexpr-0.3.5.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for letexpr-0.3.5.tar.gz
Algorithm Hash digest
SHA256 9da51fab22712210ddda998b238af8453ff08236e53f67b6a19e3a3681215237
MD5 d22998119ed2e63cb21ff650509f419a
BLAKE2b-256 ed17c06ef1d590ee586d6f680d9ca6e70580353d46648d1f88c7893bea5ff55d

See more details on using hashes here.

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