Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: Calling a subroutine when part of call is a constant variable (symbolic method names) <2 updates>

by Anonymous Monk
on May 27, 2017 at 01:27 UTC ( [id://1191336]=note: print w/replies, xml ) Need Help??


in reply to Re: Calling a subroutine when part of call is a constant variable (symbolic method names) <2 updates>
in thread Calling a subroutine when part of call is a variable Contant

Sorry don't think this addresses my question
  • Comment on Re^2: Calling a subroutine when part of call is a constant variable (symbolic method names) <2 updates>

Replies are listed 'Best First'.
Re^3: Calling a subroutine when part of call is a constant variable (symbolic method names) <2 updates>
by AnomalousMonk (Archbishop) on May 27, 2017 at 01:44 UTC

    In what way does it not address your question?


    Give a man a fish:  <%-{-{-{-<

Re^3: Calling a subroutine when part of call is a constant variable (symbolic method names) <2 updates>
by tobyink (Canon) on May 27, 2017 at 07:40 UTC

    It answers it perfectly.

Re^3: Calling a subroutine when part of call is a constant variable (symbolic method names) <2 updates>
by Anonymous Monk on May 27, 2017 at 14:41 UTC

    Dear Monks, Thanks for all your suggestions. I appreciate the time taken to help out. The Perl community really is the best! I figured it out, this is all I needed to get my code to execute correctly.

    foreach my $val (keys ${\( STUFF() ) } ){ my $subroutine = ${\( STUFF() ) }->{ $val }; my $value = $self->xml()->$subroutine(); }
      Why not  my $subroutine =  STUFF->{ $val } ?
        Doh, yea you're right. That's all that's needed. Thx
      foreach my $val (keys ${\( STUFF() ) } ){ ... }

      Here, keys is iterating over a hash reference. Quoth the docs (from 5.14):
          Starting with Perl 5.14, "keys" can take a scalar EXPR, which
          must contain a reference to an unblessed hash or array. The
          argument will be dereferenced automatically. This aspect of
          "keys" is considered highly experimental. The exact behaviour
          may change in a future version of Perl.
      And indeed, this feature was tried, found wanting, and finally cast into Outer Darkness with Perl version 5.24. (And similarly for values, each, push, pop and, I think, some others.) See also Postfix Dereference Syntax and circumfix dereference syntax, discussed therein.

      c:\@Work\Perl\monks>perl -wMstrict -le "print qq{perl version: $] \n}; ;; use constant { STUFF => { 'bizz' => 'foe', 'bazz' => 'fie', 'bozz' => 'fee', }, }; print ${\( STUFF() ) }; print STUFF; ;; foreach my $val (keys ${\( STUFF() ) } ){ my $subroutine = ${\( STUFF() ) }->{ $val }; print qq{A: '$val' -> '$subroutine'}; } ;; for my $k (keys %{ STUFF() }) { my $value = STUFF->{$k}; print qq{B: '$k' -> '$value'}; } " perl version: 5.014004 HASH(0x4340ac) HASH(0x4340ac) A: 'bozz' -> 'fee' A: 'bazz' -> 'fie' A: 'bizz' -> 'foe' B: 'bozz' -> 'fee' B: 'bazz' -> 'fie' B: 'bizz' -> 'foe'
      (The circumfix dereference syntax is more widely supported — and I can't give an example of postfix dereference syntax anyway!)


      Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (8)
As of 2024-04-18 06:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found