lithium\util\Collection::rewind()

public method

Rewinds to the first item.

Returns

mixed

The current item after rewinding, or false if the collection is empty.

Source

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