Flutter Engine
 
Loading...
Searching...
No Matches
flutter::DisplayList::Iterator Class Reference

Iterator utility class used for the |DisplayListbegin| and |DisplayListend| methods. It implements just the basic methods to enable iteration-style for loops. More...

#include <display_list.h>

Public Member Functions

DlIndex operator* () const
 
bool operator!= (const Iterator &other)
 
Iteratoroperator++ ()
 

Friends

class DisplayList
 

Detailed Description

Iterator utility class used for the |DisplayListbegin| and |DisplayListend| methods. It implements just the basic methods to enable iteration-style for loops.

Definition at line 354 of file display_list.h.

Member Function Documentation

◆ operator!=()

bool flutter::DisplayList::Iterator::operator!= ( const Iterator other)
inline

Definition at line 357 of file display_list.h.

357{ return value_ != other.value_; }

◆ operator*()

DlIndex flutter::DisplayList::Iterator::operator* ( ) const
inline

Definition at line 356 of file display_list.h.

356{ return value_; }

◆ operator++()

Iterator & flutter::DisplayList::Iterator::operator++ ( )
inline

Definition at line 358 of file display_list.h.

358 {
359 value_++;
360 return *this;
361 }

Friends And Related Symbol Documentation

◆ DisplayList

friend class DisplayList
friend

Definition at line 368 of file display_list.h.


The documentation for this class was generated from the following file: