Acme-CPANModules-DataStructureWalker

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA


Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) 19xx name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the
appropriate parts of the General Public License.  Of course, the
commands you use may be called something other than `show w' and `show
c'; they could even be mouse-clicks or menu items--whatever suits your
program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here a sample; alter the names:

META.json  view on Meta::CPAN

         "version" : "0.003"
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-DataStructureWalker"
      },
      "homepage" : "https://metacpan.org/release/Acme-CPANModules-DataStructureWalker",
      "repository" : {
         "type" : "git",
         "url" : "git://github.com/perlancar/perl-Acme-CPANModules-DataStructureWalker.git",
         "web" : "https://github.com/perlancar/perl-Acme-CPANModules-DataStructureWalker"
      }
   },
   "version" : "0.003",
   "x_Dist_Zilla" : {
      "perl" : {
         "version" : "5.038000"
      },
      "plugins" : [

META.json  view on Meta::CPAN

         {
            "class" : "Dist::Zilla::Plugin::UploadToCPAN::WWWPAUSESimple",
            "name" : "@Author::PERLANCAR/UploadToCPAN::WWWPAUSESimple",
            "version" : "0.04"
         },
         {
            "class" : "Dist::Zilla::Plugin::Prereqs",
            "config" : {
               "Dist::Zilla::Plugin::Prereqs" : {
                  "phase" : "runtime",
                  "type" : "requires"
               }
            },
            "name" : "Prereqs",
            "version" : "6.030"
         },
         {
            "class" : "Dist::Zilla::Plugin::Prereqs",
            "config" : {
               "Dist::Zilla::Plugin::Prereqs" : {
                  "phase" : "develop",
                  "type" : "x_spec"
               }
            },
            "name" : "DevelopX_spec",
            "version" : "6.030"
         },
         {
            "class" : "Dist::Zilla::Plugin::FinderCode",
            "name" : ":InstallModules",
            "version" : "6.030"
         },

META.yml  view on Meta::CPAN

      version: '0.007'
    -
      class: Dist::Zilla::Plugin::UploadToCPAN::WWWPAUSESimple
      name: '@Author::PERLANCAR/UploadToCPAN::WWWPAUSESimple'
      version: '0.04'
    -
      class: Dist::Zilla::Plugin::Prereqs
      config:
        Dist::Zilla::Plugin::Prereqs:
          phase: runtime
          type: requires
      name: Prereqs
      version: '6.030'
    -
      class: Dist::Zilla::Plugin::Prereqs
      config:
        Dist::Zilla::Plugin::Prereqs:
          phase: develop
          type: x_spec
      name: DevelopX_spec
      version: '6.030'
    -
      class: Dist::Zilla::Plugin::FinderCode
      name: ':InstallModules'
      version: '6.030'
    -
      class: Dist::Zilla::Plugin::FinderCode
      name: ':IncModules'
      version: '6.030'

README  view on Meta::CPAN

DESCRIPTION
    This list catalogs modules that let you traverse your data structure by
    visiting each node/item: each element of an array, each key/value pair
    of a hash, recursively. Sort of like File::Find for your data instead of
    filesystem. These modules can be used for searching or modifying your
    data.

    Many modules in this list mimic Perl's "map" interface, for example:
    Data::Rmap, Data::Dmap, Data::Traverse. The difference among these
    modules lies in the details: in how you specify option to skip
    unsupported types of references, or whether some let you control the
    recursion (e.g. Data::Rmap's and Data::Dmap's "cut"),

    Data::Walk models its interface on File::Find. It lets you choose
    whether you want to go depth-first or breadth-first.

    Benchmarks for these modules coming soon.

    Related modules:

    Data::Clean can be used to clean/sanitize your data structure more

lib/Acme/CPANModules/DataStructureWalker.pm  view on Meta::CPAN

    description => <<'_',

This list catalogs modules that let you traverse your data structure by visiting
each node/item: each element of an array, each key/value pair of a hash,
recursively. Sort of like <pm:File::Find> for your data instead of filesystem.
These modules can be used for searching or modifying your data.

Many modules in this list mimic Perl's `map` interface, for example:
<pm:Data::Rmap>, <pm:Data::Dmap>, <pm:Data::Traverse>. The difference among
these modules lies in the details: in how you specify option to skip unsupported
types of references, or whether some let you control the recursion (e.g.
Data::Rmap's and Data::Dmap's `cut`),

<pm:Data::Walk> models its interface on File::Find. It lets you choose whether
you want to go depth-first or breadth-first.

Benchmarks for these modules coming soon.

Related modules:

<pm:Data::Clean> can be used to clean/sanitize your data structure more

lib/Acme/CPANModules/DataStructureWalker.pm  view on Meta::CPAN

=head1 DESCRIPTION

This list catalogs modules that let you traverse your data structure by visiting
each node/item: each element of an array, each key/value pair of a hash,
recursively. Sort of like L<File::Find> for your data instead of filesystem.
These modules can be used for searching or modifying your data.

Many modules in this list mimic Perl's C<map> interface, for example:
L<Data::Rmap>, L<Data::Dmap>, L<Data::Traverse>. The difference among
these modules lies in the details: in how you specify option to skip unsupported
types of references, or whether some let you control the recursion (e.g.
Data::Rmap's and Data::Dmap's C<cut>),

L<Data::Walk> models its interface on File::Find. It lets you choose whether
you want to go depth-first or breadth-first.

Benchmarks for these modules coming soon.

Related modules:

L<Data::Clean> can be used to clean/sanitize your data structure more



( run in 0.792 second using v1.01-cache-2.11-cpan-df04353d9ac )