This type implements range based for loop iterator semantics for DirStream.
More...
#include <DirIterator.hxx>
This type implements range based for loop iterator semantics for DirStream.
This type and the related begin(DirStream&) and end(DirStream&) functions allow to use range based for loops with DirStream objects.
Definition at line 13 of file DirIterator.hxx.
◆ DirIterator()
cosmos::DirIterator::DirIterator |
( |
DirStream & | dir, |
|
|
bool | at_end ) |
|
inlineexplicit |
Definition at line 16 of file DirIterator.hxx.
16 :
17 m_dir{dir} {
18 if (!at_end)
19 m_entry = dir.nextEntry();
20 }
◆ operator!=()
bool cosmos::DirIterator::operator!= |
( |
const DirIterator & | other | ) |
const |
|
inline |
Definition at line 32 of file DirIterator.hxx.
32 {
33 return !(*this == other);
34 }
◆ operator*()
DirEntry & cosmos::DirIterator::operator* |
( |
| ) |
|
|
inline |
◆ operator++()
auto & cosmos::DirIterator::operator++ |
( |
| ) |
|
|
inline |
Definition at line 36 of file DirIterator.hxx.
36 {
38 return *this;
39 }
std::optional< DirEntry > nextEntry()
Returns the next entry in the associated directory.
◆ operator==()
bool cosmos::DirIterator::operator== |
( |
const DirIterator & | other | ) |
const |
|
inline |
Definition at line 22 of file DirIterator.hxx.
22 {
23 if (m_entry.has_value() != other.m_entry.has_value())
24 return false;
25 else if (!m_entry.has_value())
26
27 return true;
28
29 return m_entry->inode() == other.m_entry->inode();
30 }
◆ m_dir
◆ m_entry
std::optional<DirEntry> cosmos::DirIterator::m_entry |
|
protected |
The documentation for this class was generated from the following file: