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

Function is_text_node

Source/ThirdParty/pugixml/pugixml_extra.cpp:20–25  ·  view source on GitHub ↗

This comes from pugi::impl::is_text_node

Source from the content-addressed store, hash-verified

18
19 // This comes from pugi::impl::is_text_node
20 inline bool is_text_node(const xml_node& node)
21 {
22 xml_node_type type = node.type();
23
24 return type == node_pcdata || type == node_cdata;
25 }
26
27 xml_node_extra::xml_node_extra(xml_node child) : xml_node(child)
28 {

Callers 1

set_child_valueMethod · 0.70

Calls 1

typeMethod · 0.45

Tested by

no test coverage detected