MCPcopy Create free account
hub / github.com/MyGUI/mygui / xpath_lexer_string

Class xpath_lexer_string

Tools/EditorFramework/pugixml.cpp:7685–7702  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7683};
7684
7685struct xpath_lexer_string
7686{
7687 const char_t* begin;
7688 const char_t* end;
7689
7690 xpath_lexer_string() :
7691 begin(0),
7692 end(0)
7693 {
7694 }
7695
7696 bool operator==(const char_t* other) const
7697 {
7698 size_t length = static_cast<size_t>(end - begin);
7699
7700 return strequalrange(other, begin, length);
7701 }
7702};
7703
7704class xpath_lexer
7705{

Callers 1

parse_stepMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected