Extends
lithium\core\Object
Moves forward to the last item.
Returns
mixed The current item after moving.Source
public function end() {
$this->_valid = !(end($this->_data) === false && key($this->_data) === null);
return current($this->_data);
}