logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

List::Objects::WithUtils::Array::Immutable - Immutable array objects

Author

       Jon Portnoy <avenj@cobaltirc.org>

       Licensed under the same terms as Perl.

perl v5.38.2                                       2024-03-07             List::Objects::...rray::Immutable(3pm)

Description

       These are immutable array objects; attempting to call list-mutating methods (or modify the backing array
       directly) will throw an exception.

       This class consumes the following roles, which contain most of the relevant documentation:

       List::Objects::WithUtils::Role::Array

       List::Objects::WithUtils::Role::Array::WithJunctions

       List::Objects::WithUtils::Role::Array::Immutable

       (See List::Objects::WithUtils::Array for a mutable implementation.)

   immarray
       Creates a new immutable array object.

Name

       List::Objects::WithUtils::Array::Immutable - Immutable array objects

Synopsis

         use List::Objects::WithUtils 'immarray';

         my $array = immarray(qw/ a b c /);

         my ($head, $rest) = $array->head;

See Also