If Iterator::valid() returns false, the foreach() loop will be terminated.
(PHP 5, PHP 7, PHP 8)
Iterator::valid — Verifica se a posição atual é válida
Este método é chamado após Iterator::rewind() e Iterator::next() para verificar se a posição atual é válida.
Esta função não possui parâmetros.
If Iterator::valid() returns false, the foreach() loop will be terminated.
If your class implements also ArrayAccess interface, you could use as valid() body
function valid(){
return $this->offsetExists($this->position);
}