Release v4.11.0
- Stream
toAssocArray
cast
>>> Stream::emits([[1, 'a'], [2, 'b']])->toAssocArray(fn($pair) => $pair);
=> [1 => 'a', 2 => 'b']
toAssocArray
cast>>> Stream::emits([[1, 'a'], [2, 'b']])->toAssocArray(fn($pair) => $pair);
=> [1 => 'a', 2 => 'b']