Metadata-Version: 2.1
Name: iterchain
Version: 0.1.1
Summary: Iterator chaining for Python
Home-page: https://github.com/Evelyn-H/iterchain
Author: Evelyn-H
Author-email: hobert.evelyn@gmail.com
License: UNKNOWN
Download-URL: https://github.com/Evelyn-H/iterchain
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Iterchain: Iterator chaining for Python
=======================================

Introduction
------------

Example:
```
>>> import iterchain
>>> iterchain([1, 2, 3]).map(lambda x: x**2).to_list()
[1, 4, 9]
```


