Acme-AutoloadAll
view release on metacpan or search on metacpan
lib/Acme/AutoloadAll.pm view on Meta::CPAN
=head1 VERSION
version 0.005
=head1 SYNOPSIS
use Scalar::Util ();
use Acme::AutoloadAll;
if (looks_like_number(42)) {
print "yay\n";
}
=head1 DESCRIPTION
This module allows you to call any function ever seen by your perl instance.
As long as you used/required a module in the past you can now call its functions everywhere.
=head1 HOW IT WORKS
t/01-functions.t view on Meta::CPAN
#!/usr/bin/env perl
use Test::More tests => 1;
use Acme::AutoloadAll;
# don't import anything from Scalar::Util
use Scalar::Util ();
# $Acme::AutoloadAll::DEBUG = 1;
ok(looks_like_number(42), 'can use function that was not imported');
( run in 0.485 second using v1.01-cache-2.11-cpan-64827b87656 )