php-collections
php-collections copied to clipboard
A collection library for php
Results
8
php-collections issues
Sort by
recently updated
recently updated
newest added
`CollectionFacrory::from(new ArrayIterator([1, 2, 3]))` тоже самое что `CollectionFacrory::fromIterable(new ArrayIterator([1, 2, 3]))`
enhancement
``` class Item { private $value; public function __construct($value) { $this->value = $value; } public function getValue() { return $this->value; } } $items = [ new Item(1), new Item(7), new...
bug