Skip to content

Commit

Permalink
Adding generic iteration class skeleton in Utility\Collection
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Dec 25, 2013
1 parent 4d2d537 commit cacb183
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions Cake/Utility/Collection.php
@@ -0,0 +1,82 @@
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since CakePHP(tm) v 3.0.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

namespace Cake\Utility;

use \ArrayIterator;
use \InvalidArgumentException;

class Collection {

protected $_iterator;

public function __construct($items) {
if (is_array($items)) {
$items = new ArrayIterator($items);
}

if (!($items instanceof \Traversable)) {
throw new InvalidArgumentException;
}

$this->_iterator = $items;
}

public function each(callable $c) {
}

public function mapReduce(callable $map, callable $reduce) {
}

public function filter(callable $c) {
}

public function some(callable $c) {
}

public function every(callable $c) {
}

public function contains(callable $c) {
}

public function extract($property) {
}

public function max() {
}

public function min() {
}

public function sortBy($property) {
}

public function groupBy($property) {
}

public function indexBy($property) {
}

public function countBy($property) {
}

public function shuffle() {
}

public function sample($size) {
}

}

0 comments on commit cacb183

Please sign in to comment.