MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / Find

Method Find

lib/mdflib/mdflib/src/dg4block.cpp:66–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66MdfBlock* Dg4Block::Find(int64_t index) const {
67 for (auto& cg : cg_list_) {
68 if (!cg) {
69 continue;
70 }
71 auto* p = cg->Find(index);
72 if (p != nullptr) {
73 return p;
74 }
75 }
76 return DataListBlock::Find(index);
77}
78
79void Dg4Block::GetBlockProperty(BlockPropertyList& dest) const {
80 MdfBlock::GetBlockProperty(dest);

Callers 2

ReadDataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected