Generator クラス

はじめに

Generatorジェネレータ が返すオブジェクトです。

警告

Generator オブジェクトのインスタンスは new では作れません。

クラス概要

final Generator
implements Iterator
/* メソッド */
public mixed current()
public mixed getReturn()
public mixed key()
public void next()
public void rewind()
public mixed send(mixed $value)
public mixed throw(Throwable $exception)
public bool valid()
public void __wakeup()

参考

オブジェクトの反復処理 も参照ください。

目次