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

Method end

extlibs/vili/src/node.cpp:655–667  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

653 }
654
655 node_iterator node::end()
656 {
657 if (is<array>())
658 {
659 auto& vector = std::get<array>(m_data);
660 return vector.end();
661 }
662 if (is<object>())
663 {
664 auto& map = std::get<object>(m_data);
665 return map.end();
666 }
667 }
668
669 const_node_iterator node::begin() const
670 {

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