in src/Apache/Ignite/Internal/Query/Cursor.php [77:87]
public function valid(): bool
{
if ($this->rewinds > 1) {
return false;
}
if (!$this->values || $this->valueIndex >= count($this->values)) {
$this->obtainValues();
$this->valueIndex = 0;
}
return $this->values && $this->valueIndex < count($this->values);
}