NAME

Class::Builtin::Array - Array as an object

VERSION

$Id: Array.pm,v 0.4 2011/05/21 21:40:54 dankogai Exp dankogai $

SYNOPSIS

  use Class::Builtin::Array;                    # use Class::Builtin;
  my $foo = Class::Builtin::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::Builtin::Array->new([])->methods->join("\n")

TODO

This section itself is to do :)

  • more methods

SEE ALSO

autobox, overload, perlfunc http://www.ruby-lang.org/

AUTHOR

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

ACKNOWLEDGEMENTS

autobox, overload, perlfunc

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.