Tagged Questions
The subroutine tag has no wiki summary.
14
votes
3answers
335 views
When should I use subroutine attributes?
I don't grok Perl subroutine attributes at all.
I have never seen them in actual code and perldoc perlsub and the perldoc attributes fail to answer my questions:
What are attributes useful for?
...
14
votes
3answers
2k views
What's the best way to discover all subroutines a Perl module has?
What's the best way to programatically discover all of the subroutines a perl module has? This could be a module, a class (no @EXPORT), or anything in-between.
Edit: All of the methods below look ...
11
votes
3answers
379 views
In Perl, how can I check from which module a given function was imported?
I have a code which calls the function. But I don't know the module this function belongs to. I need it to modify this function.
How can I check it?
11
votes
11answers
3k views
Is there a difference between Perl's shift versus assignment from @_ for subroutine parameters?
Let us ignore for a moment Damian Conway's best practice of no more than three positional parameters for any given subroutine.
Is there any difference between the two examples below in regards to ...
10
votes
3answers
562 views
When should I use the & to call a Perl subroutine?
I have heard that people shouldn't be using '&' to call Perl subs, i.e:
function($a,$b,...);
# opposed to
&function($a,$b,...);
I know for one the argument list becomes optional, but what ...
9
votes
4answers
2k views
How can I use hashes as arguments to subroutines in Perl?
I was asked to modify some existing code to add some additional functionality. I have searched on Google and cannot seem to find the answer. I have something to this effect...
%first_hash = ...
8
votes
1answer
148 views
Why am I not getting a warning from Perl?
Consider these two use cases:
sub test1 {
my $v = 1;
sub test2 { print $v }
# ...
}
and
for (0..3) {
my $foo = $_;
sub test1 { print $foo }
# ...
}
The first one ...
8
votes
6answers
547 views
Should I call Perl subroutines with no arguments as marine() or marine?
My sample code as below, there are two styles subname and subnam()
#!C:\Perl\bin\perl.exe
use strict;
use warnings;
use 5.010;
&marine(); # style 1
&marine; # style 2
sub marine {
...
8
votes
4answers
1k views
What are the uses of lvalue subroutines in Perl?
I don't understand what could be the uses of lvalue subroutines? What is it that I can't accomplish with normal subroutines? Could you please post some examples?
Thanks
7
votes
3answers
320 views
How does @_ work in Perl subroutines?
I was always sure that if I pass a Perl subroutine a simple scalar, it can never change its value outside the subroutine. That is:
my $x = 100;
foo($x);
# without knowing anything about foo(), I'm ...
6
votes
2answers
188 views
Function call instead of self messaging — When to use what?
In Objective-C, when I want to call a subroutine, I send a message to an object, like:
[self mySubroutine:myParameter];
There is a (negligible?) performance penalty, so I could just use a C-style ...
6
votes
7answers
456 views
Can a Perl subroutine return data but keep processing?
Is there any way to have a subroutine send data back while still processing? For instance (this example used simply to illustrate) - a subroutine reads a file. While it is reading through the file, if ...
6
votes
3answers
787 views
Is using labels in Perl subroutines considered a bad practice?
I find that using labels inside Perl subroutines, to break from multiple loops, or to redo some parts with updated variables, very helpful. How is this coding style seen by the community? Is using ...
5
votes
4answers
97 views
best way to differentiate between untrue/unpassed args in Perl
I am trying to figure the best way to differeniate in Perl between cases where an argument has not been passed, and where an argument has been passed as 0, since they mean different things to me.
...
5
votes
4answers
173 views
Printing out the code of an anonymous subroutine
I'm currently working in a very complex Perl architecture, and I want to create some debugging tools. Since a lot of the behavior involves anonymous subroutines, I'd like to analyze some of the ...
5
votes
4answers
286 views
How do I pass a hash to subroutine?
Need help figuring out how to do this. My code:
my %hash;
$hash{'1'}= {'Make' => 'Toyota','Color' => 'Red',};
$hash{'2'}= {'Make' => 'Ford','Color' => 'Blue',};
$hash{'3'}= {'Make' => ...
5
votes
2answers
483 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 ...
5
votes
4answers
579 views
How can I inline Perl subroutines?
I am reading Code Complete 2, and one of the points mentioned is about creating subroutines even for operations that seem too simple to have their own subroutines, and how that can be helpful.
I know ...
5
votes
4answers
131 views
Why is my Perl loop off by one at the end?
I have this program which does not work as expected. Help me.
I want to print a row heading.
If input is 4, I want 1|2|3|4 to be output.
It does not work as all, if I hard-code $count value it ...
5
votes
4answers
132 views
How can I open a file only if it is not already open, in Perl?
If I have a subroutine that opens a file what is the best way to ensure it opens it only upon the first time the subrountine is called? I have this but not sure if its best practice:
{
my $count = ...
5
votes
3answers
2k views
How to handle subroutine redefined errors in Perl
So I have a file that in short has this problem...
#!/usr/bin/perl -w
package Foo;
use strict;
use POSIX;
...
sub remove {
...
}
...
and I get a get an error saying the subroutine remove has ...
5
votes
3answers
5k views
Syntax Question: “Exit Sub” or “Return” in VB.Net Sub Routines
Both seem to accomplish the same thing--exit a subroutine. Is there any difference in how they work under the covers?
I.e.
Private Sub exitNow()
Exit Sub
End Sub
or
Private Sub exitNow()
...
5
votes
7answers
2k views
Why would I use Perl anonymous subroutines instead of a named one?
I'm just curious why one would choose to use an anonymous subroutine, versus a named one, in Perl. Thanks.
4
votes
2answers
57 views
assembly subroutines get called twice without even being called from main
I'm trying to define some subroutines that have calls to printf in them.
A very trivial example is as follows:
extern printf
LINUX equ 80H
EXIT equ 60
section .data
...
4
votes
3answers
80 views
Correct use of modules, subroutines and functions in fortran
I've recently learnt about the interface block when adding a function to my FORTRAN programme. Everything works nice and neatly, but now I want to add a second function into the interface block.
Here ...
4
votes
3answers
102 views
Passing arrays to a subroutine that prints each array separately
I know that this is probably a simple fix, but I have not been able to find the answer through google and searching through the questions here.
My goal is to pass multiple arrays to a subroutine that ...
4
votes
3answers
159 views
What does () accomplish in a subroutine definition in Perl?
The following code is lifted directly from the source of the Tie::File module. What do the empty parentheses accomplish in the definition of O_ACCMODE in this context? I know what subroutine ...
4
votes
2answers
243 views
How can I call a subroutine whose name is a value in a hash, in Perl?
$ cat test.pl
use strict;
use warnings;
sub route {
print "hello, world!";
}
my %h;
$h{'a'} = 'route';
print "1\n";
$h{a};
print "2\n";
$h{a}();
print "3\n";
"$h{a}".();
$ perl test.pl
...
4
votes
1answer
105 views
How can I tell which subroutine I'm in?
Is there a way to get the name of the enclosing subroutine of a piece of perl code?
For example:
sub foo { print where_am_i(); }
will output 'foo'.
4
votes
2answers
300 views
Perl: How to pass and use a lexical file handle to a subroutine as a named argument?
I want to pass a lexical file handle to a subroutine using a named argument, but the following does not compile:
#!/usr/bin/perl -w
use strict;
my $log_fh;
my $logname = "my.log";
sub primitive {
...
4
votes
2answers
494 views
What does the function declaration “sub function($$)” mean?
I have been using Perl for some time, but today I came across this code:
sub function1($$)
{
//snip
}
What does this mean in Perl?
4
votes
2answers
680 views
How can I pass parameters to Perl subroutines defined using eval?
I'm using a config file (in YAML) to define types that are used later on to validate other config values required for my app:
---
action: >
use List::MoreUtils;
my $value = $_;
...
4
votes
6answers
2k views
How can I export all subs in a Perl package?
I would like to expose all subs into my namespace without having to list them one at a time:
@EXPORT = qw( firstsub secondsub third sub etc );
Using fully qualified names would require bunch of ...
3
votes
1answer
78 views
Perl: transfer list of huge strings to subroutine without their copying
The task is to transfer a list of huge strings to subroutibe, but avoiding their copying on transfer. Say I have a reference named $ref pointing to the very large string. Also let's have f($) ...
3
votes
2answers
119 views
How to alias a function name in Fortran
Not sure if the title is well put. Suggestions welcome.
Here's what I want to do. Check a condition, and then decide which function to use in a loop. For example:
if (a < 0) then
loop_func = ...
3
votes
3answers
107 views
Perl : Dereference between @_ and $_
I have a question with the following Code:
#!/usr/bin/perl
use strict;
use warnings;
my %dmax=("dad" => "aaa","asd" => "bbb");
my %dmin=("dad" => "ccc","asd" => "ddd");
...
3
votes
1answer
67 views
Is there a good introduction to Perl Handlers?
I'm using the Perl mod XML::SemanticDiff which can compare two XML documents. I want to write my own custom handlers but, being relatively new to Perl I'm at a loss as to how to do this.
I ...
3
votes
3answers
138 views
How can I write a Perl script to extract the source code of each subroutine in a Perl package?
Given a Perl package Foo.pm, e.g.
package Foo;
use strict;
sub bar {
# some code here
}
sub baz {
# more code here
}
1;
How can I write a script to extract the textual source code for ...
3
votes
2answers
95 views
Is there way to pass the percentage (%) to routine?
dos-batch file
The input file has three records:
HOW NOW BROWN COW
JACK AND JILL
100% JUST YOU & ME
Script is as follows:
@echo off
set infile=e:\file.txt
set outfile=e:\outfile.txt
...
3
votes
2answers
114 views
Perl: cmpthese text vs anonymous sub problems with parameters passed
If you read about cmpthese in the Perl Benchmark module's documentation, it states that cmpthese or timethese can be used with code in either text or subroutine references. The documentation seems to ...
3
votes
2answers
127 views
Why does this line of Perl contain only a variable by itself?
I like perl the more I am getting into it but I had a question about a line I saw in a subroutine in a module I am looking through.
my $var = 1;
....
....
....
....
$var;
What throws me is just ...
3
votes
8answers
441 views
Default argument values in subroutines
I have been working with perl for about two months now; it just occurred to me that I don't know how to set default arguments for subroutines. Here is what I considered:
sub hello {
print @_ || ...
3
votes
5answers
2k views
Perl - Subroutine redefined
I have asked this question before or searched and seen others ask - why am I getting the warning "Subroutine mySub redefined at ../lib/Common.pm line x"? and you always get the answer you declared the ...
3
votes
3answers
136 views
File::Find and $_ in nested subroutines
When running the following code, the filenames of all files below C:\Test are printed. Why doesn't it print just Hello (n times, depending on how many files are processed)?
Does this imply that I ...
3
votes
3answers
214 views
How can I modify a scalar reference passed to a subroutine reference?
I have a function to convert documents into different formats, which then calls another function based on the type document. It's pretty straight forward for everything aside from HTML documents which ...
3
votes
5answers
303 views
Why am I unable to load a Perl library when using the `do` function?
I'm new to Perl, and I'm updating an old Perl website. Every .pl file seems to have this line at the top:
do "func.inc";
So I figured I could use this file to tag on a subroutine for global use.
...
3
votes
3answers
305 views
perl subroutine call
I have a Perl file like this:
use strict;
f1();
sub f3()
{ f2(); }
sub f1()
{}
sub f2()
{}
In short, f1 is called before it is defined. So, Perl throws a warning: "f1 called too early to check ...
3
votes
4answers
167 views
How do I properly invoke a subroutine that takes 2 subroutine references?
Imagine this subroutine:
sub test(&&)
{
my $cr1 = shift;
my $cr2 = shift;
$cr1->();
$cr2->();
}
I know I can call it like: test(\&sub1,\&sub2), but how can I ...
3
votes
3answers
810 views
How can I validate enum types as Perl subroutine arguments?
Building off Does Perl have an enumeration type?, how can I perform dynamic type checking (or static type checking if use strict is able to do so) that my subroutine argument is getting the right type ...
2
votes
3answers
79 views
How would I solve the following error “Undefined subroutine &main::resetCounters called at”?
How would I solve the following error "Undefined subroutine &main::resetCounters called at"? The subroutine has been prototyped but still Perl complains. The following code is what I am having ...