You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added an unshift() method to Icicle\Stream\MemoryStream, Icicle\Stream\Pipe\ReadablePipe, and Icicle\Stream\Pipe\DuplexPipe that puts data at the front of the stream. The data given to this method will be the first data read for any pending or subsequent read.
Changed
Simultaneous reads are now allowed on readable streams, fulfilling in the order they were created. Simultaneous reads will not fulfill with the same data, rather each is fulfilled independently with new data read from the stream.