your - Perl pragma to declare use of other package's variables


your documentation  | view source Contained in the your distribution.

Index


NAME

Top

your - Perl pragma to declare use of other package's variables

SYNOPSIS

Top

    use your qw($Foo::bar @Moo::you %This::that);

DESCRIPTION

Top

You should use variables from other packages with care, but as long as you're going to, it doesn't hurt to predeclare it.

Currently, if you use another package's variables and only use it once, Perl will throw a "variable used only once" warning. vars.pm won't allow you to declare other package's variables, and there are various hack to get around that. This package lets you declare "Yes, I am going to use someone else's variables!"

    use Foo;
    use your qw($Foo::magic);
    print $Foo::magic;

AUTHOR

Top

Michael G Schwern <schwern@pobox.com>

COPYRIGHT

Top

SEE ALSO

Top

vars, our in perlfunc, my in perlfunc, strict


your documentation  | view source Contained in the your distribution.