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

Re^5: use feature 'postderef'; # Postfix Dereference Syntax is coming in 5.20 (complexity)

by tye (Sage)
on Nov 26, 2013 at 18:38 UTC ( [id://1064445]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @got = @{ 
        ExactlyWhatThisReturns( $exactly, $what, $it, $is, $based, $on ) 
    };
    
  2. or download this
    my @got = @{ ExactlyWhatThisReturns(
        $exactly, $what, $it, $is, $based, $on,
    ) };
    
  3. or download this
    my @items = @{
        $user->GetAccount()->GetPriorOrder()->GetItemCodes() 
    };
    
  4. or download this
    my( $state, $zip ) = @{
        $user->GetAccount()->GetPriorOrder()->GetShippingAddress() 
    }{ 'state', 'zip' };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1064445]
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: (4)
As of 2024-04-20 00:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found