Metadata-Version: 2.1
Name: functionalstream
Version: 0.1
Summary: A functional interface for python iterator
Home-page: https://github.com/cjwcommuny/functionalstream
Author: cjwcommuny
Author-email: cjwcommuny@outlook.com
License: UNKNOWN
Description: # functionalstream
        
        ## Installation
        
        ```shell script
        pip install functionalstream
        ```
        
        ## Example
        
        ```python
        from functionalstream import Stream
        
        # functionalstream = [0, 6, 12, 18, 24]
        stream = Stream(range(10)).filter(lambda x: x % 2 == 0).map(lambda x: x * 3).to_list()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
