Metadata-Version: 2.1
Name: scalaps
Version: 0.0.1
Summary: Scala-inspired data structures for Python
Home-page: https://github.com/matthagy/scalaps
Author: Matt Hagy
Author-email: matthew.hagy@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# scalaps
Scala-inspired data structures for Python

Example:
```python
from scalaps import ScSeq

(ScSeq(range(10))
 .map(lambda x: x+3)
 .filter(lambda x: x%2==0)
 .group_by(lambda x: x%3)
 .items()
 .for_each(print))
```

Output:
```
(1, ScList([4, 10]))
(0, ScList([6, 12]))
(2, ScList([8]))
```

Very much a work in progress. Expect major changes as the library evolves.

I'd very match appreciate other people's input, so feel free to submit a PR.

Contact: Matt Hagy <matthew.hagy@gmail.com>

