Package Information |
Summary |
Provides extra data structures and iterable/array functionality. |
Maintainers |
Tyson Andre (lead)
[details]
|
License |
BSD-3-Clause |
Description |
teds (Tentative Extra Data Structures) is a collection of data structures and iterable functionality |
Homepage |
https://github.com/TysonAndre/pecl-teds
|
Release notes
Version 0.4.0
(alpha)
|
* Backwards incompatible change: Change `Deque` APIs to be consistent with SplDoublyLinkedList and `array_push`: change pushBack/popBack/pushFront/popFront to push/pop/unshift/shift * Backwards incompatible change: Remove `$preserve_keys` flag from `Vector::__construct` (Always reindex keys in order of iteration instead). * Add isEmpty() method to datastructures * Make exceeding the capacity limit for a vector a fatal error. * Make Deque::push() and unshift() variadic. |