briward/itemlist

Provides a way to build strongly typed lists of values. Provides methods to search, sort, and manipulate lists. Heavily inspired by the .NET List<T> class.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/briward/itemlist

dev-master 2018-06-26 12:27 UTC

This package is not auto-updated.

Last update: 2025-10-12 01:08:16 UTC


README

Build Status

Provides a way to build strongly typed lists of values. Provides methods to search, sort, and manipulate lists. Heavily inspired by the .NET List class.

Installation

composer require briward/itemlist

Example usage

use Briward\ItemList\ItemList;

class Foo {}

$list = new ItemList('Foo');
$list->add(new Foo());
print_r($list->items());