יובל קוג'מן (Yuval Kogman) > KiokuDB > KiokuDB::Set::Transient

Download:
KiokuDB-0.34.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  1
View Bugs
Report a bug
Source  

NAME ^

KiokuDB::Set::Transient - Implementation of in memory sets.

SYNOPSIS ^

    my $set = KiokuDB::Set::Transient->new(
        set => Set::Object->new( @objects ),
    );

    # or

    use KiokuDB::Util qw(set);

    my $set = set(@objects);

DESCRIPTION ^

This class implements sets conforming to the KiokuDB::Set API.

These sets can be constructed by the user for insertion into storage.

See KiokuDB::Set for more details.