Skip to main content

Set of functional and lazy programming tools

Project description

Lazy computing

Based on haskell features, exemples are worth a 1000 words

Usage

.. code:: python

from lazy_computing import *

.. code:: python

for x in infinity: print(x)                         # 1 2 3 4 5 ...

for x in remove(100, infinity): print(x)            # 100 101 102 103 ...

for x in take(5, remove(100, infinity)): print(x)   # 100 101 102 103 104

for x in arithm(1, 5, ...): print(x)                # 1 5 9 13 17 ...

for x in arithm(1, 5, ..., 17): print(x)            # 1 5 9 13

for x in geom(1, 5, ...): print(x)                  # 1 5 25 125 625 ...

for x in geom(1, 5, ..., 500): print(x)             # 1 5 25 125 625 ...

for x in tail([5, 6, 7, 8]): print(x)               # 6 7 8

print(head([5, 6, 7, 8]))                           # 5
print(extract(2, [5, 6, 7, 8]))                     # 7

Documentation

  • infinity: iterable representing the infinity
  • remove(number, iterable): return an iterator without the number first element
  • extract(index, iterable): return the value at index from iterable
  • take(limit, iterable): return an iterator taking limit first value from iterable
  • head(iterable): return the first value of an iterable
  • tail(iterable): return an iterator on an iterable, without the head
  • arithm(*args): return an iterable. It guess the step from the arguments
  • geom(*args): return an iterable: It guess the factor from the arguments

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lazy_computing-0.1.tar.gz (2.3 kB view hashes)

Uploaded Source

Built Distribution

lazy_computing-0.1-py3-none-any.whl (14.6 kB view hashes)

Uploaded 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