Letter P

php-PhpCollection - General purpose collection library for PHP

Website: http://jmsyst.com/libs/php-collection
License: ASL 2.0
Vendor: Alcance Libre, Inc.
Description:
This library adds basic collections for PHP.

Collections can be seen as more specialized arrays for which certain contracts
are guaranteed.

Supported Collections:
* Sequences
** Keys: numerical, consequentially increasing, no gaps
** Values: anything, duplicates allowed
** Classes: Sequence, SortedSequence
* Maps
** Keys: strings or objects, duplicate keys not allowed
** Values: anything, duplicates allowed
** Classes: Map, ObjectMap (not yet implemented)
* Sets (not yet implemented)
** Keys: not meaningful
** Values: anything, each value must be unique (===)
** Classes: Set

General Characteristics:
* Collections are mutable (new elements may be added, existing elements may be
  modified or removed). Specialized immutable versions may be added in the
  future though.
* Equality comparison between elements are always performed using the shallow
  comparison operator (===).
* Sorting algorithms are unstable, that means the order for equal elements is
  undefined (the default, and only PHP behavior).

Autoloader: /usr/share/php/PhpCollection/autoload.php

Packages

php-PhpCollection-0.5.0-4.fc14.al.noarch [20 KiB] Changelog by Shawn Iwinski (2017-09-07):
- Bump release for rebuild

Listing created by Repoview-0.6.6-6.fc14.al