MCPcopy Create free account
hub / github.com/Simsys/qhexedit2 / foreach

Function foreach

src/chunks.cpp:163–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161bool Chunks::dataChanged(qint64 pos)
162{
163 foreach (Chunk chunk, _chunks)
164 {
165 if (pos >= chunk.absPos && pos < (chunk.absPos + chunk.dataChanged.size()))
166 {
167 return bool(chunk.dataChanged.at(pos - chunk.absPos));
168 }
169 }
170 return false;
171}
172

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected