Checks whether the iterator is currently valid.
Implementation of \Iterator::valid() - called at the top of the loop, returning TRUE to process the loop and FALSE to terminate it.
public function valid() : bool { return isset($this->currentRow); }