The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FP::Id

SYNOPSIS

    use FP::Id;
    is id("a"),"a";
    my $a = [];
    my $b = [];
    ok(id($a) eq id($a));
    ok not id($a) eq id($b);
    # Objects can implement FP::Abstract::Id to override using their
    # pointer as the id. *Or* should the default be the show() string?

DESCRIPTION

SEE ALSO

FP::Abstract::Id.

NOTE

This is alpha software! Read the status section in the package README or on the website.