| Hadoop-Streaming documentation | Contained in the Hadoop-Streaming distribution. |
Hadoop::Streaming::Role::Iterator - Role to require has_next and next
version 0.110030
This software is copyright (c) 2011 by Naoya Ito <naoya@hatena.ne.jp>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Hadoop-Streaming documentation | Contained in the Hadoop-Streaming distribution. |
package Hadoop::Streaming::Role::Iterator; BEGIN { $Hadoop::Streaming::Role::Iterator::VERSION = '0.110030'; } use Moose::Role; requires qw(has_next next); #ABSTRACT: Role to require has_next and next 1; __END__