lithium\util\Collection::end()

public method

Moves forward to the last item.

Returns

mixed

The current item after moving.

Source

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