Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
SkPlainTextEditor::Editor::Text::Iterator Struct Reference

#include <editor.h>

Public Member Functions

StringView operator* ()
 
void operator++ ()
 
bool operator!= (const Iterator &other) const
 

Public Attributes

std::vector< TextLine >::const_iterator fPtr
 

Detailed Description

Definition at line 43 of file editor.h.

Member Function Documentation

◆ operator!=()

bool SkPlainTextEditor::Editor::Text::Iterator::operator!= ( const Iterator other) const
inline

Definition at line 47 of file editor.h.

47{ return fPtr != other.fPtr; }
std::vector< TextLine >::const_iterator fPtr
Definition editor.h:44

◆ operator*()

StringView SkPlainTextEditor::Editor::Text::Iterator::operator* ( )
inline

Definition at line 45 of file editor.h.

45{ return fPtr->fText.view(); }

◆ operator++()

void SkPlainTextEditor::Editor::Text::Iterator::operator++ ( )
inline

Definition at line 46 of file editor.h.

46{ ++fPtr; }

Member Data Documentation

◆ fPtr

std::vector<TextLine>::const_iterator SkPlainTextEditor::Editor::Text::Iterator::fPtr

Definition at line 44 of file editor.h.


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