Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
102 views

In Perl, is there any difference between direct glob aliasing and aliasing via the stash?

In Perl, is there ever any difference between the following two constructs: *main::foo = *main::bar and $main::{foo} = $main::{bar} They appear to have the same function (aliasing all of the ...
5
votes
2answers
481 views

Why does this Perl produce “Not a CODE reference?”

I need to remove a method from the Perl symbol table at runtime. I attempted to do this using undef &Square::area, which does delete the function but leaves some traces behind. Specifically, when ...
4
votes
7answers
544 views

perl: iterate over a typeglob

Given a typeglob, how can I find which types are actually defined? In my application, we user PERL as a simple configuration format. I'd like to require() the user config file, then be able to see ...
4
votes
3answers
451 views

How can a Perl subroutine distinguish between file names, file handes, *DATA, and *STDIN?

If I have a function that might be passed a file name or various file handles or typeglobs, how can the function distinguish among these arguments -- including telling the difference, for example, ...
3
votes
4answers
170 views

Reading another packages symbol table in Perl

I am trying to read a global symbol from another package. I have the package name as a string. I am using qualify_to_ref from Symbol module my $ref = qualify_to_ref ( 'myarray', 'Mypackage' ) ; ...
2
votes
4answers
93 views

How do I do the same thing as reference using typeglob in perl?

$ref = \%hash; $ref = \@hash; How do I do the same thing as reference using typeglob in perl? What's the exact steps perl takes to interpret $$ref{key}?
2
votes
4answers
347 views

What does *PIPER mean in Perl?

I need some help understanding the following Perl code snippet. I have the following two questions. 1. What does local *PIPER mean? Even though I've done some Perl programming before the local * ...
1
vote
2answers
82 views

How do I get access to filehandle and format respectively by typeglob?

It seems filehandle and format doesn't have any prefix,so I can't get reference to them by tricks like %{*spud}. Is there anything I'm missing? UPDATE How do I access the format? Why do ...
1
vote
3answers
316 views

How do I rename an exported function in Perl?

I have some Perl modules which exports various functions. (We haven't used @EXPORT in new modules for some years, but have retained it for compatibility with old scripts.) I have renamed a number of ...