Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
SkBlockAllocator::BlockIter< Forward, Const >::Item Class Reference

#include <SkBlockAllocator.h>

Public Member Functions

bool operator!= (const Item &other) const
 
BlockT * operator* () const
 
Itemoperator++ ()
 

Detailed Description

template<bool Forward, bool Const>
class SkBlockAllocator::BlockIter< Forward, Const >::Item

Definition at line 702 of file SkBlockAllocator.h.

Member Function Documentation

◆ operator!=()

template<bool Forward, bool Const>
bool SkBlockAllocator::BlockIter< Forward, Const >::Item::operator!= ( const Item other) const
inline

Definition at line 704 of file SkBlockAllocator.h.

704{ return fBlock != other.fBlock; }

◆ operator*()

template<bool Forward, bool Const>
BlockT * SkBlockAllocator::BlockIter< Forward, Const >::Item::operator* ( ) const
inline

Definition at line 706 of file SkBlockAllocator.h.

706{ return fBlock; }

◆ operator++()

template<bool Forward, bool Const>
Item & SkBlockAllocator::BlockIter< Forward, Const >::Item::operator++ ( )
inline

Definition at line 708 of file SkBlockAllocator.h.

708 {
709 this->advance(fNext);
710 return *this;
711 }

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