#include <object.h>
Definition at line 5045 of file object.h.
◆ DictionaryIterator()
dart::DictionaryIterator::DictionaryIterator |
( |
const Library & |
library | ) |
|
|
explicit |
Definition at line 13502 of file object.cc.
13504
13506 next_ix_(0) {
13507 MoveToNextObject();
13508}
◆ GetNext()
ObjectPtr dart::DictionaryIterator::GetNext |
( |
| ) |
|
Definition at line 13510 of file object.cc.
13510 {
13512 int ix = next_ix_++;
13513 MoveToNextObject();
13515 return array_.
At(ix);
13516}
ObjectPtr At(intptr_t index) const
◆ HasNext()
bool dart::DictionaryIterator::HasNext |
( |
| ) |
const |
|
inline |
Definition at line 5049 of file object.h.
5049{ return next_ix_ < size_; }
◆ ClassDictionaryIterator
The documentation for this class was generated from the following files:
- third_party/dart-lang/sdk/runtime/vm/object.h
- third_party/dart-lang/sdk/runtime/vm/object.cc