The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Object::Base::Array

ABSTRACT

Data-Object Abstract Array Class

SYNOPSIS

  use Data::Object::Base::Array;

  my $array = Data::Object::Base::Array->new([1..9]);

DESCRIPTION

Data::Object::Base::Array provides routines for operating on Perl 5 array references.

METHODS

This package implements the following methods.

new

  new(ArrayRef $arg1) : Object

The new method expects a list or array reference and returns a new class instance.

new example
  package My::Array;

  use parent 'Data::Object::Base::Array';

  # given 1..9

  my $array = My::Array->new([1..9]);