MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / xpath_lexer_string

Class xpath_lexer_string

Source/ThirdParty/pugixml/pugixml.cpp:7995–8010  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7993 };
7994
7995 struct xpath_lexer_string
7996 {
7997 const char_t* begin;
7998 const char_t* end;
7999
8000 xpath_lexer_string(): begin(0), end(0)
8001 {
8002 }
8003
8004 bool operator==(const char_t* other) const
8005 {
8006 size_t length = static_cast<size_t>(end - begin);
8007
8008 return strequalrange(other, begin, length);
8009 }
8010 };
8011
8012 class xpath_lexer
8013 {

Callers 1

parse_stepMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected