Acme-CPANModules-ArrayClassBuilder

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

NAME
    Acme::CPANModules::ArrayClassBuilder - List of class builders for
    array-backed classes

VERSION
    This document describes version 0.002 of
    Acme::CPANModules::ArrayClassBuilder (from Perl distribution
    Acme-CPANModules-ArrayClassBuilder), released on 2022-03-08.

DESCRIPTION
    This list catalogs class builders for classes that use array (instead of
    the popular hash) as their backend storage.

    Hash is the vastly popular backend for object due to its flexibility and
    convenient mapping of hash keys to object attributes, but actually Perl
    objects can be references to any kind of data (array, scalar, glob).
    Storing objects as other kinds of references can be useful in terms of
    attribute access speed, memory size, or other aspects. But they are not
    as versatile and generic as hash.

ACME::CPANMODULES ENTRIES
    *   Class::Accessor::Array - Generate accessors/constructor for
        array-based object

        Author: PERLANCAR <https://metacpan.org/author/PERLANCAR>

    *   Class::Accessor::Array::Glob - Generate accessors/constructor for
        array-based object (supports globbing attribute)

        Author: PERLANCAR <https://metacpan.org/author/PERLANCAR>

    *   Class::XSAccessor::Array - Generate fast XS accessors without
        runtime compilation

        Author: SMUELLER <https://metacpan.org/author/SMUELLER>

    *   Class::ArrayObjects - utility class for array based objects

        Author: RONAN <https://metacpan.org/author/RONAN>

    *   Object::ArrayType::New - Only supports defining constants for array
        indexes

        Author: AVENJ <https://metacpan.org/author/AVENJ>

FAQ
  What is an Acme::CPANModules::* module?
    An Acme::CPANModules::* module, like this module, contains just a list
    of module names that share a common characteristics. It is a way to
    categorize modules and document CPAN. See Acme::CPANModules for more
    details.

  What are ways to use this Acme::CPANModules module?
    Aside from reading this Acme::CPANModules module's POD documentation,
    you can install all the listed modules (entries) using cpanm-cpanmodules
    script (from App::cpanm::cpanmodules distribution):

     % cpanm-cpanmodules -n ArrayClassBuilder

    Alternatively you can use the cpanmodules CLI (from App::cpanmodules
    distribution):

        % cpanmodules ls-entries ArrayClassBuilder | cpanm -n

    or Acme::CM::Get:

        % perl -MAcme::CM::Get=ArrayClassBuilder -E'say $_->{module} for @{ $LIST->{entries} }' | cpanm -n

    or directly:

        % perl -MAcme::CPANModules::ArrayClassBuilder -E'say $_->{module} for @{ $Acme::CPANModules::ArrayClassBuilder::LIST->{entries} }' | cpanm -n



( run in 0.661 second using v1.01-cache-2.11-cpan-39bf76dae61 )