fiisoft/jackdaw-stream
Composer 安装命令:
composer require fiisoft/jackdaw-stream
包简介
A unique library to provide stream-like operations on iterable data.
关键字:
README 文档
README
This library allows to perform stream operations on iterable data, similar to Java or Scala.
It comes with tons of unique features not available elsewhere. Will you ever need them? No, never.
How to install?
Use composer (fiisoft/jackdaw-stream). Code is compatible with PHP >=7.4 (up to the newest version).
How to start?
Typically it starts with Stream::from(...). For example:
Stream::from(Producers::sequentialInt()) ->mapKey(static fn(int $n): int => ($n % 3 === 0 ? 2 : 0) | ($n % 5 === 0 ? 1 : 0)) ->map(static fn(int $n, int $k): string => [$n, 'Buzz', 'Fizz', 'Fizz Buzz'][$k].', ') ->forEach(STDOUT);
Let it flow!
Documentation
Does not exist. Sorry.
Class Stream is the entry point to this code, so look at public methods of this class, and their typehints. Analyse examples and tests.
Disclaimer
I can change anything in this library without warning, although I try to keep semantic versioning.
And as always: don't use it unless you're mentally strong enough to be immune to such bad code (and my bad English too).
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-07-17