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

Method First

depends/tinyxml/tinyxml.h:912–912  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

910 void Remove( TiXmlAttribute* attribute );
911
912 const TiXmlAttribute* First() const { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
913 TiXmlAttribute* First() { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
914 const TiXmlAttribute* Last() const { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }
915 TiXmlAttribute* Last() { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }

Callers 5

ClearThisMethod · 0.80
PrintMethod · 0.80
CopyToMethod · 0.80
AcceptMethod · 0.80
FirstAttributeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected