mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-08 00:09:04 +00:00
25 lines
447 B
PHP
25 lines
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;
|
||
|
}
|
||
|
}
|
||
|
?>
|