/usr/lib/perl5/Variable/Magic.pm is in libvariable-magic-perl 0.53-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 | package Variable::Magic;
use 5.008;
use strict;
use warnings;
=head1 NAME
Variable::Magic - Associate user-defined magic to variables from Perl.
=head1 VERSION
Version 0.53
=cut
our $VERSION;
BEGIN {
$VERSION = '0.53';
}
=head1 SYNOPSIS
use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
{ # A variable tracer
my $wiz = wizard(
set => sub { print "now set to ${$_[0]}!\n" },
free => sub { print "destroyed!\n" },
);
my $a = 1;
cast $a, $wiz;
$a = 2; # "now set to 2!"
} # "destroyed!"
{ # A hash with a default value
my $wiz = wizard(
data => sub { $_[1] },
fetch => sub { $_[2] = $_[1] unless exists $_[0]->{$_[2]}; () },
store => sub { print "key $_[2] stored in $_[-1]\n" },
copy_key => 1,
op_info => VMG_OP_INFO_NAME,
);
my %h = (_default => 0, apple => 2);
cast %h, $wiz, '_default';
print $h{banana}, "\n"; # "0" (there is no 'banana' key in %h)
$h{pear} = 1; # "key pear stored in helem"
}
=head1 DESCRIPTION
Magic is Perl's way of enhancing variables.
This mechanism lets the user add extra data to any variable and hook syntactical operations (such as access, assignment or destruction) that can be applied to it.
With this module, you can add your own magic to any variable without having to write a single line of XS.
You'll realize that these magic variables look a lot like tied variables.
It is not surprising, as tied variables are implemented as a special kind of magic, just like any 'irregular' Perl variable : scalars like C<$!>, C<$(> or C<$^W>, the C<%ENV> and C<%SIG> hashes, the C<@ISA> array, C<vec()> and C<substr()> lvalues, L<threads::shared> variables...
They all share the same underlying C API, and this module gives you direct access to it.
Still, the magic made available by this module differs from tieing and overloading in several ways :
=over 4
=item *
Magic is not copied on assignment.
You attach it to variables, not values (as for blessed references).
=item *
Magic does not replace the original semantics.
Magic callbacks usually get triggered before the original action takes place, and cannot prevent it from happening.
This also makes catching individual events easier than with C<tie>, where you have to provide fallbacks methods for all actions by usually inheriting from the correct C<Tie::Std*> class and overriding individual methods in your own class.
=item *
Magic is multivalued.
You can safely apply different kinds of magics to the same variable, and each of them will be invoked successively.
=item *
Magic is type-agnostic.
The same magic can be applied on scalars, arrays, hashes, subs or globs.
But the same hook (see below for a list) may trigger differently depending on the type of the variable.
=item *
Magic is invisible at Perl level.
Magical and non-magical variables cannot be distinguished with C<ref>, C<tied> or another trick.
=item *
Magic is notably faster.
Mainly because perl's way of handling magic is lighter by nature, and because there is no need for any method resolution.
Also, since you don't have to reimplement all the variable semantics, you only pay for what you actually use.
=back
The operations that can be overloaded are :
=over 4
=item *
I<get>
This magic is invoked when the variable is evaluated.
It is never called for arrays and hashes.
=item *
I<set>
This magic is called each time the value of the variable changes.
It is called for array subscripts and slices, but never for hashes.
=item *
I<len>
This magic only applies to arrays (though it used to also apply to scalars), and is triggered when the 'size' or the 'length' of the variable has to be known by Perl.
This is typically the magic involved when an array is evaluated in scalar context, but also on array assignment and loops (C<for>, C<map> or C<grep>).
The length is returned from the callback as an integer.
Starting from perl 5.12, this magic is no longer called by the C<length> keyword, and starting from perl 5.17.4 it is also no longer called for scalars in any situation, making this magic only meaningful on arrays.
You can use the constants L</VMG_COMPAT_SCALAR_LENGTH_NOLEN> and L</VMG_COMPAT_SCALAR_NOLEN> to see if this magic is available for scalars or not.
=item *
I<clear>
This magic is invoked when the variable is reset, such as when an array is emptied.
Please note that this is different from undefining the variable, even though the magic is called when the clearing is a result of the undefine (e.g. for an array, but actually a bug prevent it to work before perl 5.9.5 - see the L<history|/PERL MAGIC HISTORY>).
=item *
I<free>
This magic is called when a variable is destroyed as the result of going out of scope (but not when it is undefined).
It behaves roughly like Perl object destructors (i.e. C<DESTROY> methods), except that exceptions thrown from inside a I<free> callback will always be propagated to the surrounding code.
=item *
I<copy>
This magic only applies to tied arrays and hashes, and fires when you try to access or change their elements.
=item *
I<dup>
This magic is invoked when the variable is cloned across threads.
It is currently not available.
=item *
I<local>
When this magic is set on a variable, all subsequent localizations of the variable will trigger the callback.
It is available on your perl if and only if C<MGf_LOCAL> is true.
=back
The following actions only apply to hashes and are available if and only if L</VMG_UVAR> is true.
They are referred to as I<uvar> magics.
=over 4
=item *
I<fetch>
This magic is invoked each time an element is fetched from the hash.
=item *
I<store>
This one is called when an element is stored into the hash.
=item *
I<exists>
This magic fires when a key is tested for existence in the hash.
=item *
I<delete>
This magic is triggered when a key is deleted in the hash, regardless of whether the key actually exists in it.
=back
You can refer to the tests to have more insight of where the different magics are invoked.
=head1 FUNCTIONS
=cut
BEGIN {
require XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);
}
=head2 C<wizard>
wizard(
data => sub { ... },
get => sub { my ($ref, $data [, $op]) = @_; ... },
set => sub { my ($ref, $data [, $op]) = @_; ... },
len => sub {
my ($ref, $data, $len [, $op]) = @_; ... ; return $newlen
},
clear => sub { my ($ref, $data [, $op]) = @_; ... },
free => sub { my ($ref, $data [, $op]) = @_, ... },
copy => sub { my ($ref, $data, $key, $elt [, $op]) = @_; ... },
local => sub { my ($ref, $data [, $op]) = @_; ... },
fetch => sub { my ($ref, $data, $key [, $op]) = @_; ... },
store => sub { my ($ref, $data, $key [, $op]) = @_; ... },
exists => sub { my ($ref, $data, $key [, $op]) = @_; ... },
delete => sub { my ($ref, $data, $key [, $op]) = @_; ... },
copy_key => $bool,
op_info => [ 0 | VMG_OP_INFO_NAME | VMG_OP_INFO_OBJECT ],
)
This function creates a 'wizard', an opaque object that holds the magic information.
It takes a list of keys / values as argument, whose keys can be :
=over 4
=item *
C<data>
A code (or string) reference to a private data constructor.
It is called in scalar context each time the magic is cast onto a variable, with C<$_[0]> being a reference to this variable and C<@_[1 .. @_-1]> being all extra arguments that were passed to L</cast>.
The scalar returned from this call is then attached to the variable and can be retrieved later with L</getdata>.
=item *
C<get>, C<set>, C<len>, C<clear>, C<free>, C<copy>, C<local>, C<fetch>, C<store>, C<exists> and C<delete>
Code (or string) references to the respective magic callbacks.
You don't have to specify all of them : the magic corresponding to undefined entries will simply not be hooked.
When those callbacks are executed, C<$_[0]> is a reference to the magic variable and C<$_[1]> is the associated private data (or C<undef> when no private data constructor is supplied with the wizard).
Other arguments depend on which kind of magic is involved :
=over 8
=item *
I<len>
C<$_[2]> contains the natural, non-magical length of the variable (which can only be a scalar or an array as I<len> magic is only relevant for these types).
The callback is expected to return the new scalar or array length to use, or C<undef> to default to the normal length.
=item *
I<copy>
C<$_[2]> is a either an alias or a copy of the current key, and C<$_[3]> is an alias to the current element (i.e. the value).
Because C<$_[2]> might be a copy, it is useless to try to change it or cast magic on it.
=item *
I<fetch>, I<store>, I<exists> and I<delete>
C<$_[2]> is an alias to the current key.
Note that C<$_[2]> may rightfully be readonly if the key comes from a bareword, and as such it is unsafe to assign to it.
You can ask for a copy instead by passing C<< copy_key => 1 >> to L</wizard> which, at the price of a small performance hit, allows you to safely assign to C<$_[2]> in order to e.g. redirect the action to another key.
=back
Finally, if C<< op_info => $num >> is also passed to C<wizard>, then one extra element is appended to C<@_>.
Its nature depends on the value of C<$num> :
=over 8
=item *
C<VMG_OP_INFO_NAME>
C<$_[-1]> is the current op name.
=item *
C<VMG_OP_INFO_OBJECT>
C<$_[-1]> is the C<B::OP> object for the current op.
=back
Both result in a small performance hit, but just getting the name is lighter than getting the op object.
These callbacks are executed in scalar context and are expected to return an integer, which is then passed straight to the perl magic API.
However, only the return value of the I<len> magic callback currently holds a meaning.
=back
Each callback can be specified as :
=over 4
=item *
a code reference, which will be called as a subroutine.
=item *
a string reference, where the string denotes which subroutine is to be called when magic is triggered.
If the subroutine name is not fully qualified, then the current package at the time the magic is invoked will be used instead.
=item *
a reference to C<undef>, in which case a no-op magic callback is installed instead of the default one.
This may especially be helpful for I<local> magic, where an empty callback prevents magic from being copied during localization.
=back
Note that I<free> magic is never called during global destruction, as there is no way to ensure that the wizard object and the callback were not destroyed before the variable.
Here is a simple usage example :
# A simple scalar tracer
my $wiz = wizard(
get => sub { print STDERR "got ${$_[0]}\n" },
set => sub { print STDERR "set to ${$_[0]}\n" },
free => sub { print STDERR "${$_[0]} was deleted\n" },
);
=cut
sub wizard {
if (@_ % 2) {
require Carp;
Carp::croak('Wrong number of arguments for wizard()');
}
my %opts = @_;
my @keys = qw<op_info data get set len clear free copy dup>;
push @keys, 'local' if MGf_LOCAL;
push @keys, qw<fetch store exists delete copy_key> if VMG_UVAR;
my ($wiz, $err);
{
local $@;
$wiz = eval { _wizard(map $opts{$_}, @keys) };
$err = $@;
}
if ($err) {
$err =~ s/\sat\s+.*?\n//;
require Carp;
Carp::croak($err);
}
return $wiz;
}
=head2 C<cast>
cast [$@%&*]var, $wiz, @args
This function associates C<$wiz> magic to the supplied variable, without overwriting any other kind of magic.
It returns true on success or when C<$wiz> magic is already attached, and croaks on error.
When C<$wiz> provides a data constructor, it is called just before magic is cast onto the variable, and it receives a reference to the target variable in C<$_[0]> and the content of C<@args> in C<@_[1 .. @args]>.
Otherwise, C<@args> is ignored.
# Casts $wiz onto $x, passing (\$x, '1') to the data constructor.
my $x;
cast $x, $wiz, 1;
The C<var> argument can be an array or hash value.
Magic for these scalars behaves like for any other, except that it is dispelled when the entry is deleted from the container.
For example, if you want to call C<POSIX::tzset> each time the C<'TZ'> environment variable is changed in C<%ENV>, you can use :
use POSIX;
cast $ENV{TZ}, wizard set => sub { POSIX::tzset(); () };
If you want to handle the possible deletion of the C<'TZ'> entry, you must also specify I<store> magic.
=head2 C<getdata>
getdata [$@%&*]var, $wiz
This accessor fetches the private data associated with the magic C<$wiz> in the variable.
It croaks when C<$wiz> does not represent a valid magic object, and returns an empty list if no such magic is attached to the variable or when the wizard has no data constructor.
# Get the data attached to $wiz in $x, or undef if $wiz
# did not attach any.
my $data = getdata $x, $wiz;
=head2 C<dispell>
dispell [$@%&*]variable, $wiz
The exact opposite of L</cast> : it dissociates C<$wiz> magic from the variable.
This function returns true on success, C<0> when no magic represented by C<$wiz> could be found in the variable, and croaks if the supplied wizard is invalid.
# Dispell now.
die 'no such magic in $x' unless dispell $x, $wiz;
=head1 CONSTANTS
=head2 C<MGf_COPY>
Evaluates to true if and only if the I<copy> magic is available.
This is the case for perl 5.7.3 and greater, which is ensured by the requirements of this module.
=head2 C<MGf_DUP>
Evaluates to true if and only if the I<dup> magic is available.
This is the case for perl 5.7.3 and greater, which is ensured by the requirements of this module.
=head2 C<MGf_LOCAL>
Evaluates to true if and only if the I<local> magic is available.
This is the case for perl 5.9.3 and greater.
=head2 C<VMG_UVAR>
When this constant is true, you can use the I<fetch>, I<store>, I<exists> and I<delete> magics on hashes.
Initial L</VMG_UVAR> capability was introduced in perl 5.9.5, with a fully functional implementation shipped with perl 5.10.0.
=head2 C<VMG_COMPAT_SCALAR_LENGTH_NOLEN>
True for perls that don't call I<len> magic when taking the C<length> of a magical scalar.
=head2 C<VMG_COMPAT_SCALAR_NOLEN>
True for perls that don't call I<len> magic on scalars.
Implies L</VMG_COMPAT_SCALAR_LENGTH_NOLEN>.
=head2 C<VMG_COMPAT_ARRAY_PUSH_NOLEN>
True for perls that don't call I<len> magic when you push an element in a magical array.
Starting from perl 5.11.0, this only refers to pushes in non-void context and hence is false.
=head2 C<VMG_COMPAT_ARRAY_PUSH_NOLEN_VOID>
True for perls that don't call I<len> magic when you push in void context an element in a magical array.
=head2 C<VMG_COMPAT_ARRAY_UNSHIFT_NOLEN_VOID>
True for perls that don't call I<len> magic when you unshift in void context an element in a magical array.
=head2 C<VMG_COMPAT_ARRAY_UNDEF_CLEAR>
True for perls that call I<clear> magic when undefining magical arrays.
=head2 C<VMG_COMPAT_HASH_DELETE_NOUVAR_VOID>
True for perls that don't call I<delete> magic when you delete an element from a hash in void context.
=head2 C<VMG_COMPAT_GLOB_GET>
True for perls that call I<get> magic for operations on globs.
=head2 C<VMG_PERL_PATCHLEVEL>
The perl patchlevel this module was built with, or C<0> for non-debugging perls.
=head2 C<VMG_THREADSAFE>
True if and only if this module could have been built with thread-safety features enabled.
=head2 C<VMG_FORKSAFE>
True if and only if this module could have been built with fork-safety features enabled.
This is always true except on Windows where it is false for perl 5.10.0 and below.
=head2 C<VMG_OP_INFO_NAME>
Value to pass with C<op_info> to get the current op name in the magic callbacks.
=head2 C<VMG_OP_INFO_OBJECT>
Value to pass with C<op_info> to get a C<B::OP> object representing the current op in the magic callbacks.
=head1 COOKBOOK
=head2 Associate an object to any perl variable
This technique can be useful for passing user data through limited APIs.
It is similar to using inside-out objects, but without the drawback of having to implement a complex destructor.
{
package Magical::UserData;
use Variable::Magic qw<wizard cast getdata>;
my $wiz = wizard data => sub { \$_[1] };
sub ud (\[$@%*&]) : lvalue {
my ($var) = @_;
my $data = &getdata($var, $wiz);
unless (defined $data) {
$data = \(my $slot);
&cast($var, $wiz, $slot)
or die "Couldn't cast UserData magic onto the variable";
}
$$data;
}
}
{
BEGIN { *ud = \&Magical::UserData::ud }
my $cb;
$cb = sub { print 'Hello, ', ud(&$cb), "!\n" };
ud(&$cb) = 'world';
$cb->(); # Hello, world!
}
=head2 Recursively cast magic on datastructures
C<cast> can be called from any magical callback, and in particular from C<data>.
This allows you to recursively cast magic on datastructures :
my $wiz;
$wiz = wizard data => sub {
my ($var, $depth) = @_;
$depth ||= 0;
my $r = ref $var;
if ($r eq 'ARRAY') {
&cast((ref() ? $_ : \$_), $wiz, $depth + 1) for @$var;
} elsif ($r eq 'HASH') {
&cast((ref() ? $_ : \$_), $wiz, $depth + 1) for values %$var;
}
return $depth;
},
free => sub {
my ($var, $depth) = @_;
my $r = ref $var;
print "free $r at depth $depth\n";
();
};
{
my %h = (
a => [ 1, 2 ],
b => { c => 3 }
);
cast %h, $wiz;
}
When C<%h> goes out of scope, this prints something among the lines of :
free HASH at depth 0
free HASH at depth 1
free SCALAR at depth 2
free ARRAY at depth 1
free SCALAR at depth 3
free SCALAR at depth 3
Of course, this example does nothing with the values that are added after the C<cast>.
=head1 PERL MAGIC HISTORY
The places where magic is invoked have changed a bit through perl history.
Here is a little list of the most recent ones.
=over 4
=item *
B<5.6.x>
I<p14416> : I<copy> and I<dup> magic.
=item *
B<5.8.9>
I<p28160> : Integration of I<p25854> (see below).
I<p32542> : Integration of I<p31473> (see below).
=item *
B<5.9.3>
I<p25854> : I<len> magic is no longer called when pushing an element into a magic array.
I<p26569> : I<local> magic.
=item *
B<5.9.5>
I<p31064> : Meaningful I<uvar> magic.
I<p31473> : I<clear> magic was not invoked when undefining an array.
The bug is fixed as of this version.
=item *
B<5.10.0>
Since C<PERL_MAGIC_uvar> is uppercased, C<hv_magic_check()> triggers I<copy> magic on hash stores for (non-tied) hashes that also have I<uvar> magic.
=item *
B<5.11.x>
I<p32969> : I<len> magic is no longer invoked when calling C<length> with a magical scalar.
I<p34908> : I<len> magic is no longer called when pushing / unshifting an element into a magical array in void context.
The C<push> part was already covered by I<p25854>.
I<g9cdcb38b> : I<len> magic is called again when pushing into a magical array in non-void context.
=back
=head1 EXPORT
The functions L</wizard>, L</cast>, L</getdata> and L</dispell> are only exported on request.
All of them are exported by the tags C<':funcs'> and C<':all'>.
All the constants are also only exported on request, either individually or by the tags C<':consts'> and C<':all'>.
=cut
use base qw<Exporter>;
our @EXPORT = ();
our %EXPORT_TAGS = (
'funcs' => [ qw<wizard cast getdata dispell> ],
'consts' => [ qw<
MGf_COPY MGf_DUP MGf_LOCAL VMG_UVAR
VMG_COMPAT_SCALAR_LENGTH_NOLEN
VMG_COMPAT_SCALAR_NOLEN
VMG_COMPAT_ARRAY_PUSH_NOLEN VMG_COMPAT_ARRAY_PUSH_NOLEN_VOID
VMG_COMPAT_ARRAY_UNSHIFT_NOLEN_VOID
VMG_COMPAT_ARRAY_UNDEF_CLEAR
VMG_COMPAT_HASH_DELETE_NOUVAR_VOID
VMG_COMPAT_GLOB_GET
VMG_PERL_PATCHLEVEL
VMG_THREADSAFE VMG_FORKSAFE
VMG_OP_INFO_NAME VMG_OP_INFO_OBJECT
> ],
);
our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS;
$EXPORT_TAGS{'all'} = [ @EXPORT_OK ];
=head1 CAVEATS
In order to hook hash operations with magic, you need at least perl 5.10.0 (see L</VMG_UVAR>).
If you want to store a magic object in the private data slot, you will not be able to recover the magic with L</getdata>, since magic is not copied by assignment.
You can work around this gotcha by storing a reference to the magic object instead.
If you define a wizard with I<free> magic and cast it on itself, it results in a memory cycle, so this destructor will not be called when the wizard is freed.
=head1 DEPENDENCIES
L<perl> 5.8.
A C compiler.
This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard.
L<Carp> (core since perl 5), L<XSLoader> (since 5.6.0).
Copy tests need L<Tie::Array> (core since perl 5.005) and L<Tie::Hash> (since 5.002).
Some uvar tests need L<Hash::Util::FieldHash> (since 5.9.4).
Glob tests need L<Symbol> (since 5.002).
Threads tests need L<threads> and L<threads::shared> (both since 5.7.3).
=head1 SEE ALSO
L<perlguts> and L<perlapi> for internal information about magic.
L<perltie> and L<overload> for other ways of enhancing objects.
=head1 AUTHOR
Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
You can contact me by mail or on C<irc.perl.org> (vincent).
=head1 BUGS
Please report any bugs or feature requests to C<bug-variable-magic at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic>.
I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Variable::Magic
Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Variable-Magic>.
=head1 COPYRIGHT & LICENSE
Copyright 2007,2008,2009,2010,2011,2012,2013 Vincent Pit, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
1; # End of Variable::Magic
|