mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-08 00:09:02 +00:00
25 lines
No EOL
447 B
PHP
25 lines
No EOL
447 B
PHP
<?php
|
|
class NodeIterator {
|
|
private $nodes;
|
|
private $curr;
|
|
|
|
function NodeIterator(&$nodes) {
|
|
$this->nodes = $nodes;
|
|
$this->curr = 0;
|
|
}
|
|
|
|
function hasNext() {
|
|
$tmp = array_keys($this->nodes);
|
|
return isset($this->nodes[$tmp[$this->curr]]);
|
|
}
|
|
|
|
function getNext() {
|
|
$tmp = array_keys($this->nodes);
|
|
return $this->nodes[$tmp[$this->curr++]];
|
|
}
|
|
|
|
function first() {
|
|
$this->curr = 0;
|
|
}
|
|
}
|
|
?>
|