Metadata-Version: 2.1
Name: pystream-wushilin
Version: 1.0.0
Summary: A python stream utility
Home-page: https://github.com/wushilin/pystream
Author: wushilin
Author-email: wushilin.sg@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/wushilin/pystream/issues
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
License-File: LICENSE

stream = Stream([1,2,3,4,5])

stream.map(lambda x: x+1).sum() # 20
stream.count() #0, as stream is consumed already




