Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^4: Modules for autogenerating accessor/mutator methods

by magog (Beadle)
on Jun 05, 2005 at 20:17 UTC ( [id://463767]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Modules for autogenerating accessor/mutator methods
in thread Modules for autogenerating accessor/mutator methods

Hmmm... That's a good point. It's the same thing with Class::Accessor::Lvalue. When you want to upgrade to a full method, you're stuck: there doesn't seem to be an easy way to make an lvalue subroutine that has access to the rvalue.

Update: But you're right - Attribute::Property does allow you to do all the processing you want, as long as you follow it's rules. So it's probably enough.

Update: For instance, you could do:

sub email : Property { my $self = shift; $_ = 'some_arbitrary@address.com'; 1; } # ... # user code $self->email = 'my@address.com'; print $self->email; # prints some_arbitrary@address.com

Michael

Log In?
Username:
Password:

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

    No recent polls found