Hadoop::Streaming::Role::Iterator - Role to require has_next and next


Hadoop-Streaming documentation Contained in the Hadoop-Streaming distribution.

Index


Code Index:

NAME

Top

Hadoop::Streaming::Role::Iterator - Role to require has_next and next

VERSION

Top

version 0.110030

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


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__