
Pangloss::Terms - a collection of Pangloss terms.

use Pangloss::Terms;
my $terms = new Pangloss::Terms();
try {
my $term = $terms->get( $name );
$terms->add( $term );
$terms->remove( $term );
do { ... } foreach ( $terms->list );
} catch Pangloss::Term::Error with {
my $e = shift;
...
}

This class contains a collection of Pangloss::Term objects. It inherits its interface from Pangloss::Collection.
The collection is keyed on $term->name().

synonym for $obj->keys()

Steve Purkis <spurkis@quiup.com>

Pangloss, Pangloss::Collection, Pangloss::Term, Pangloss::Term::Error