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

NAME

Class::Array - Array as an object

VERSION

$Id: Array.pm,v 0.1 2009/06/21 09:09:26 dankogai Exp dankogai $

SYNOPSIS

  use Class::Array;                    # use Class::Builtin;
  my $foo = Class::Array->new([0..9]); # OO([0..9]);
  print $foo->length; # 10

EXPORT

None. But see Class::Builtin

METHODS

This section is under construction. For the time being, try

  print Class::Array->new([])->methods->join("\n")

TODO

This section itself is to do :)

  • more methods

SEE ALSO

Class::Builtin, Class::Scalar, Class::Hash

AUTHOR

Dan Kogai, <dankogai at dan.co.jp>

ACKNOWLEDGEMENTS

autobox, overload

COPYRIGHT & LICENSE

Copyright 2009 Dan Kogai, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.