Source

						public function prev() {
		if (!$this->_resource) {
			return;
		}
		if ($this->_current == $this->_prev()) {
			$this->_iterator--;
			return $this->_current;
		}
	}