InternalIterator クラス

(PHP 8)

はじめに

内部クラス が、 IteratorAggregate を実装しやすくするためのクラスです。

クラス概要

final class InternalIterator implements Iterator {
/* メソッド */
private function __construct()
public function current(): mixed
public function key(): mixed
public function next(): void
public function rewind(): void
public function valid(): bool
}

目次

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top