Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Disabling the interpretation of diamond <> operator in package?

by LanX (Saint)
on Apr 10, 2018 at 00:52 UTC ( [id://1212619]=note: print w/replies, xml ) Need Help??


in reply to Re: Disabling the interpretation of diamond <> operator in package?
in thread Disabling the interpretation of diamond <> operator in package?

Indeed thanks! :)

see perlsub for the explanation:

&NAME;       # Makes current @_ visible to called subroutine.

It's a syntax to pass parameters through, so it can't accept new arguments.

DB<27> sub tst { [@_] } DB<28> sub outer { &tst } DB<29> x outer(1,2,3) 0 ARRAY(0x2f700e8) 0 1 1 2 2 3 DB<30> x &tst 1,2,3 Number found where operator expected at

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Wikisyntax for the Monastery

update

for clarification, while interesting, this doesn't answer my question and side effects are too weird...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-26 08:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found