XML::Grove::IDs - phpMan

Command: man perldoc info search(apropos)  


Sections
NAME SYNOPSIS DESCRIPTION AUTHOR SEE ALSO
NAME
    XML::Grove::IDs - return an index of `id' attributes in a grove

SYNOPSIS
     use XML::Grove::IDs;

     # Using get_ids method on XML::Grove::Document or XML::Grove::Element:
     $hash = $grove_object->get_ids($attr_name, $elements);

     # Using an XML::Grove::IDs instance:
     $indexer = XML::Grove::IDs->new($attr_name, $elements);
     my $hash = {};
     $grove_object->accept($indexer, $hash);

DESCRIPTION
    "XML::Grove::IDs" returns a hash index of all nodes in a grove with an
    `id' attribute. The keys of the hash are the ID attribute value and the
    value at that key is the element. `$attr_name' and `$elements' are
    optional. The attribute name defaults to `"id"' if `$attr_name' is not
    supplied. Indexing can be restricted to only certain elements, by name,
    by providing a hash containing NAME=>1 values.

AUTHOR
    Ken MacLeod, ken AT bitsko.us

SEE ALSO
    perl(1), XML::Grove(3), Data::Grove::Visitor(3)

    Extensible Markup Language (XML) <http://www.w3c.org/XML>


Generated by phpMan Author: Che Dong On Apache Under GNU General Public License - MarkDown Format
2026-05-23 07:42 @216.73.217.24 CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 TransitionalValid CSS!

^_back to top