NAME

Lingua::ZH::CCDICT::ResultSet::BerkeleyDB - Iterates over results in a BerkeleyDB database

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 fetching results from a BerkeleyDB database based on an array of keys stored in memory.