Method: Nokogiri::XML::Node#node_type
- Defined in:
- ext/nokogiri/xml_node.c
#node_type ⇒ Object Also known as: type
Get the type for this Node
1483 1484 1485 1486 1487 1488 1489 |
# File 'ext/nokogiri/xml_node.c', line 1483
static VALUE
node_type(VALUE self)
{
xmlNodePtr node;
Noko_Node_Get_Struct(self, xmlNode, node);
return INT2NUM(node->type);
}
|