metaperl has asked for the wisdom of the Perl Monks concerning the following question:
It appears that Fey has some technology like this under the hood based on the synopsis example:use Mouse; has 'body' => (is => 'rw'); has 'hdr' => (is => 'rw'); has 'ftr' => (is => 'rw'); 1; my $m = Doc->new; $m->body('double')->hdr->('headless')->ftr('soccer');
$select->select( $user->columns( 'user_id', 'username' ) ) ->from( $user, $group ) ->where( $group->group_id, 'IN', 1, 2, 3 ) ->and ( $func, 'LIKE', 'smith%' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: object system with chained mutators?
by Corion (Patriarch) on Feb 12, 2009 at 14:58 UTC | |
by metaperl (Curate) on Feb 12, 2009 at 18:02 UTC | |
by dragonchild (Archbishop) on Feb 18, 2009 at 15:00 UTC | |
|
Re: object system with chained mutators?
by Arunbear (Prior) on Feb 12, 2009 at 16:00 UTC |