Skip to content

Provides a way to build strongly typed lists of values that can be accessed by index. Provides methods to search, sort, and manipulate lists.

License

Notifications You must be signed in to change notification settings

briward/itemlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ItemList

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());

About

Provides a way to build strongly typed lists of values that can be accessed by index. Provides methods to search, sort, and manipulate lists.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages