NAME

Lingua::ZH::CCDICT::ResultSet::Array - An iterator over an array

SYNOPSIS

my $results = $ccdict->match_unicode( chr(0x8830), chr(0x88A4) );

while ( my $result = $results->next )
{
    print "Result Number ", $result->count, ": ";
    print " cangjie is ", $result->cangjie, "\n";
}

DESCRIPTION

This module implements the Lingua::ZH::CCDICT::ResultSet interface, as described in Lingua::ZH::CCDICT.

It does this by simply returning results one at a time from an array in memory.