Skip to content

Release v4.11.0

Compare
Choose a tag to compare
@whsv26 whsv26 released this 21 Dec 21:47
· 356 commits to master since this release
  • Stream toAssocArray cast
>>> Stream::emits([[1, 'a'], [2, 'b']])->toAssocArray(fn($pair) => $pair);
=> [1 => 'a', 2 => 'b']