Skip to content
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jwage committed Nov 30, 2010
0 parents commit 45016c7
Show file tree
Hide file tree
Showing 15 changed files with 1,921 additions and 0 deletions.
98 changes: 98 additions & 0 deletions lib/Doctrine/MongoDB/ArrayIterator.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.doctrine-project.org>.
*/

namespace Doctrine\MongoDB;

/**
* ArrayIterator
*
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @author Jonathan H. Wage <[email protected]>
*/
class ArrayIterator implements Iterator
{
private $elements;

public function __construct(array $elements = array())
{
$this->elements = $elements;
}

public function first()
{
return reset($this->elements);
}

public function last()
{
return end($this->elements);
}

public function key()
{
return key($this->elements);
}

public function next()
{
next($this->elements);
}

public function current()
{
return current($this->elements);
}

public function count()
{
return count($this->elements);
}

public function rewind()
{
reset($this->elements);
}

public function reset()
{
reset($this->elements);
}

public function valid()
{
return current($this->elements) !== false;
}

public function toArray()
{
return $this->elements;
}

public function getSingleResult()
{
$result = null;
$this->valid() ?: $this->next();
if ($this->valid()) {
$result = $this->current();
}
$this->reset();
return $result ? $result : null;
}
}
Loading

0 comments on commit 45016c7

Please sign in to comment.