I'm having trouble with some hashes in subroutines. It just doesn't seem "fast" using them like I've read in the books. Here's what I have:
my %gnarf = mysub($val);
my $foo = $gnarf{'foo_count'};
my $bar = $gnarf{'bar_count'};
my @gak = @{$gnarf{gak_array}};
my @flub = @{$gnarf{flub_array}};
### Take in the string $val, produce some
### scalars and two arrays
sub mysub {
my $val = shift;
# do stuff with $val, a string, producing @foos,
# @bars, @gaks, and @flubs, and some other simple
# scalars here to count the elements in the list
my $foos = @foos; # count elements of @foos
my $bars = @bars; # ditto for @bars
return (foo_count => $foos,
bar_count => $bars,
gak_array => [sort @gaks],
flub_array => [sort @flubs]);
}
Aside from renaming my structures, is there a better way to execute the sub, passing in $val, have it return scalars and hashes, and let me access those elements, in a fast, scalable way?
Is this the "Right Way™" to use hashes here?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.