in reply to Re: Accessing $a and $b of 'sort' across package boundaries
in thread Accessing $a and $b of 'sort' across package boundaries
foreach ( sort gs::long_strings_first($a,$b), @$raw_hash_keys_ar ) { #do_stuff; } package gs; sub long_strings_first { my ($first, $second) = @_; ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Accessing $a and $b of 'sort' across package boundaries
by ikegami (Patriarch) on Jun 06, 2005 at 19:34 UTC | |
by davidrw (Prior) on Jun 06, 2005 at 19:49 UTC | |
by ikegami (Patriarch) on Jun 06, 2005 at 20:54 UTC |