Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: what would you like to see in perl5.12?

by EvanCarroll (Chaplain)
on Aug 19, 2007 at 20:05 UTC ( [id://633656]=note: print w/replies, xml ) Need Help??


in reply to Re^2: what would you like to see in perl5.12?
in thread what would you like to see in perl5.12?

Bump the Moose suggestion and you can get close to that functionality now...
use Moose; has 'string' => ( isa => 'Str', is => 'rw' ); has 'times' => ( isa => 'Int', is => 'rw' ); sub foo { my $self = shift; my ( $string, $times ) = ( $self->string, $self->times ); }


Evan Carroll
www.EvanCarroll.com

Replies are listed 'Best First'.
Re^4: what would you like to see in perl5.12?
by moritz (Cardinal) on Aug 20, 2007 at 09:35 UTC
    Would that work with sub signatures (not methods), and does it allow for the same kind of optimization that is possible if the compiler knows about the types?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-03-29 14:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found