MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / begin

Method begin

extlibs/vili/src/node.cpp:641–653  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

639 }
640
641 node_iterator node::begin()
642 {
643 if (is<array>())
644 {
645 auto& vector = std::get<array>(m_data);
646 return std::get<array>(m_data).begin();
647 }
648 if (is<object>())
649 {
650 auto& map = std::get<object>(m_data);
651 return map.begin();
652 }
653 }
654
655 node_iterator node::end()
656 {

Callers 15

loadMethod · 0.45
isStringAlphaFunction · 0.45
isStringAlphaNumericFunction · 0.45
isStringIntFunction · 0.45
isStringFloatFunction · 0.45
startsWithFunction · 0.45
sortByDistanceFunction · 0.45
getNodePathMethod · 0.45
BindingTree.cppFile · 0.45
operator()Method · 0.45
UnmountMethod · 0.45
SortMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected