Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^8: accessing stashes

by morgon (Priest)
on Mar 01, 2019 at 20:18 UTC ( [id://1230738]=note: print w/replies, xml ) Need Help??


in reply to Re^7: accessing stashes
in thread accessing stashes

First of all thanks a lot for solving my problem.

But I was wondering if there is an expression that would avoid having a two-step solution (i.e. without first assigning a temporary $glob variable).

So is there an expression that when I have a symbol ("hubba" say) I could do a

$some_convoluted_expression{hubba}->{CODE}
(or something like that) to determine whether or not there is a sub-routine of that name in the main-package.

But this is for bonus-points only...

Replies are listed 'Best First'.
Re^9: accessing stashes
by ikegami (Patriarch) on Mar 01, 2019 at 20:46 UTC

    You can't check if the glob contains a code reference before you make sure you have a glob in the first place!

    But this is all moot. This solution doesn't work as of Perl 5.22. You should be using one of the solutions that work in 5.22 and beyond. See Re^4: accessing stashes

      But it's a good point.

      I did not realize (even though it's kind of logical when you think about it) that first you need to check if the stash exists at all and only then you can examine the code-slot...

      But many thanks.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1230738]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-25 09:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found