Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
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.