NAME

MoCo::List - Array iterator for MoCo.

SYNOPSIS

my $array_ref = [
  {name => 'jkondo'},
  {name => 'cinnamon'}
];
my $list = MoCo::List->new($array_ref);

$list->size; # 2
my @names = $list->map_name; # ('jkondo','cinnamon')
my $first = $list->pop; # first hash

SEE ALSO

MoCo

AUTHOR

Junya Kondo, <jkondo@hatena.com>, Naoya Ito, <naoya@hatena.ne.jp>

COPYRIGHT AND LICENSE

Copyright (C) Hatena Inc. All Rights Reserved.

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