Metadata-Version: 2.1
Name: pyiter
Version: 0.0.4
Summary: PyIter is a Python package for iterative operations inspired by the Kotlin、CSharp(linq)、TypeSrcipt and Rust . Enables strong typing and type inference for iterative operations.
Author: YISH
Author-email: mokeyish@hotmail.com
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# PyIter

PyIter is a Python package for iterative operations inspired by the Kotlin、CSharp(linq)、TypeSrcipt and Rust .
Enables strong **typing** and type inference for iterative operations.

- Chain operations like map, reduce, filter_map
- Lazy evaluation
- strong **typing**

## Install

```bash
pip install pyiter
```

## Quickstart

```python
from pyiter import it

text = ["hello", "world"]
iterate(text).map(str.upper).to_list()
# ['HELLO', 'WORLD']
```

<!-- **Type inference**
![.](./screenshot.png)

## API -->


