Cache-Keys-DSL
view release on metacpan or search on metacpan
lib/Cache/Keys/DSL.pm view on Meta::CPAN
2829303132333435363738394041424344454647
Exporter->
import
(
'import'
);
}
no
strict
qw/refs/
;
no
warnings
qw/once/
;
*{
"${caller}::with_version"
} = \
&_with_version
;
@{
"${caller}::EXPORT_OK"
} = ();
%{
"${caller}::EXPORT_TAGS"
} = (
all
=> \@{
"${caller}::EXPORT_OK"
});
}
sub
_with_version($$) {
## no critic
my
$name
=
shift
;
my
$version
=
shift
;
return
[
$name
,
$version
];
}
sub
_key {
my
$base_version
=
shift
;
return
sub
($) {
## no critic
my
$name
=
shift
;
( run in 0.620 second using v1.01-cache-2.11-cpan-e5176c747c2 )