MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / GetData

Method GetData

src/base/AFStringPod.hpp:423–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

421 }
422
423 bool GetData(const TYPE* name, DATA& data) const
424 {
425 node_t* p = FindNode(name);
426
427 if (p == nullptr)
428 {
429 return false;
430 }
431
432 data = p->data;
433 return true;
434 }
435
436 iterator Begin()
437 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected