MCPcopy Create free account
hub / github.com/AllentDan/LibtorchTutorials / Last

Method Last

lesson7-Detection/src/utils/tinyxml.h:914–914  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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; }
916
917 TiXmlAttribute* Find( const char* _name ) const;

Callers 1

LastAttributeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected