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
NOTE
This is alpha software! Read the status section in the package README or on the website.