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

NAME

Teng::Plugin::SearchJoined::Iterator - Iterator for Teng::Plugin::SearchJoined

SYNOPSIS

    my $itr = $db->search_joined(...);
    while ( my ($row1, $row2,...) = $itr->next ) {
        ...
    }

    my $itr = $db->search_joined(...);
    $itr->suppress_object_creation;
    while ( my ($row_hash2, $row_hash2,...) = $itr->next ) {
        ...
    }

DESCRIPTION

Teng::Plugin::SearchJoined::Iterator is an Iterator for Teng::Plugin::SearchJoined.

INTERFACE

Method

($row1, $row2...) = $itr->next

Get next data of row objects.

$itr->suppress_object_creation($bool)

Set row object creation mode.

LICENSE

Copyright (C) Masayuki Matsuki.

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

AUTHOR

Masayuki Matsuki <y.songmu@gmail.com>