Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: I don't understand this grep

by gone2015 (Deacon)
on Nov 05, 2008 at 18:07 UTC ( [id://721751]=note: print w/replies, xml ) Need Help??


in reply to Re: I don't understand this grep
in thread I don't understand this grep

The curious thing is that the test in the grep:

return grep { $self->level( $level ) } $self->channels;
contains nothing that depends on whatever $self->channels is or returns. It could equally be written:
return $self->level($level) ? $self->channels : () ;
but that doesn't answer the question of why $self->channels appears to be missing.

Replies are listed 'Best First'.
Re^3: I don't understand this grep
by ikegami (Patriarch) on Nov 05, 2008 at 18:50 UTC
    I wonder if it's supposed to be
    return grep { $_->level( $level ) } $self->channels;
      Yes it's easy to mess $_ and $_[0]. Nobody see that until an error occured.

      I tried adjusting the syntax and got the exact same message. $self->channels is not defined anywhere in the module, so it is either misnamed or missing. I will have to figure that out

      g_White
Re^3: I don't understand this grep
by gwadej (Chaplain) on Nov 05, 2008 at 18:11 UTC

    Well, that won't work if $self->channels returns a list, which seems likely, based on the name.

    Update: Need to engage eyeballs before fingers. Thanks massa and jwkrahn for an appropriate whack on the side of the head.

    G. Wade

      That should work fine.   What makes you think that it won't work?

      ??!!!
      Yes it will work with channels returning a list, according to Conditional operator:
      Scalar or list context propagates downward into the 2nd or 3rd argument, whichever is selected.
      And it won't execute $self->level($level) once for each item of the returned list, which is good.

      Now, the reason why channels is missing is because... well, gwhite didn't show any sub channels { ... } in the module... But he didn't state that it does not exist, either...

      []s, HTH, Massa (κς,πμ,πλ)

        There is not a sub channels { ... } routine, or any list being created when the module is invoked.

        g_White

        Brain cramp. I could have sworn there was still a $_ in the grep expression. Which would (of course) made your change completely different than the original.

        Ignore me, I need more sleep.

        G. Wade

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2025-12-15 01:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your view on AI coding assistants?





    Results (95 votes). Check out past polls.

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.