Re: [PHP-DEV] Implement SeekableIterator for SplObjectStorage

2024-03-10 Thread Niels Dossche
Hi Bruce On 10/03/2024 21:43, Bruce Weirdan wrote: > On Sun, Mar 10, 2024 at 9:14 PM Niels Dossche wrote: > >> I opened a PR to make SplObjectStorage implement SeekableIterator, this >> means that it'll now be possible to use `seek(int $offset): void` on >> SplObjectStorage > > Note that

Re: [PHP-DEV] Implement SeekableIterator for SplObjectStorage

2024-03-10 Thread Bruce Weirdan
On Sun, Mar 10, 2024 at 9:14 PM Niels Dossche wrote: > I opened a PR to make SplObjectStorage implement SeekableIterator, this means > that it'll now be possible to use `seek(int $offset): void` on > SplObjectStorage Note that it's a BC break for descendants of SplObjectStorage with an

[PHP-DEV] Implement SeekableIterator for SplObjectStorage

2024-03-10 Thread Niels Dossche
Hi internals I opened a PR to make SplObjectStorage implement SeekableIterator, this means that it'll now be possible to use `seek(int $offset): void` on SplObjectStorage. I'm mainly posting here to see if there are any objections. PR link: https://github.com/php/php-src/pull/13665 Kind regards