NAME
    Data::DPath - DPath is not XPath!

SYNOPSIS
        use Data::DPath 'dpath';
        my $data  = {
                     AAA  => { BBB => { CCC  => [ qw/ XXX YYY ZZZ / ] },
                               RRR => { CCC  => [ qw/ RR1 RR2 RR3 / ] },
                               DDD => { EEE  => [ qw/ uuu vvv www / ] },
                             },
                    };
        @resultlist = dpath('/AAA/*/CCC')->match($data);   # ( ['XXX', 'YYY', 'ZZZ'], [ 'RR1', 'RR2', 'RR3' ] )
        $resultlist = $data ~~ dpath '/AAA/*/CCC';         # [ ['XXX', 'YYY', 'ZZZ'], [ 'RR1', 'RR2', 'RR3' ] ]

    See currently working paths in "t/data_dpath.t".

INSTALLATION
     perl Makefile.PL
     make
     make test
     make install

AUTHOR
    Steffen Schwigon, "<schwigon at cpan.org>"

BUGS
    Please report any bugs or feature requests to "bug-data-dpath at
    rt.cpan.org", or through the web interface at
    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Data-DPath>. I will be
    notified, and then you'll automatically be notified of progress on your
    bug as I make changes.

SUPPORT
    You can find documentation for this module with the perldoc command.

        perldoc Data::DPath

    You can also look for information at:

    *   RT: CPAN's request tracker

        <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Data-DPath>

    *   AnnoCPAN: Annotated CPAN documentation

        <http://annocpan.org/dist/Data-DPath>

    *   CPAN Ratings

        <http://cpanratings.perl.org/d/Data-DPath>

    *   Search CPAN

        <http://search.cpan.org/dist/Data-DPath>

REPOSITORY
    The public repository is hosted on github:

      git clone git://github.com/renormalist/data-dpath.git

COPYRIGHT & LICENSE
    Copyright 2008 Steffen Schwigon.

    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.