The MongoDB\BSON\Iterator class

(mongodb >=1.16.0)

Introduction

Iterator used to iterate a BSON document or array.

Class synopsis

final class MongoDB\BSON\Iterator implements Iterator {
/* Methods */
final private function __construct()
public function current(): mixed
public function key(): string|int
public function next(): void
public function rewind(): void
public function valid(): bool
}

Table of Contents

add a note

User Contributed Notes

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