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]);
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
STATUS
SEE ALSO
To get the most out of this distribution, consider reading the following: