MCPcopy Create free account
hub / github.com/DFHack/dfhack / LastChild

Method LastChild

depends/tinyxml/tinyxml.cpp:373–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

371
372
373const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
374{
375 const TiXmlNode* node;
376 for ( node = lastChild; node; node = node->prev )
377 {
378 if ( strcmp( node->Value(), _value ) == 0 )
379 return node;
380 }
381 return 0;
382}
383
384
385const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const

Callers 1

VisitEnterMethod · 0.45

Calls 1

ValueMethod · 0.45

Tested by

no test coverage detected