Dear fellow monks, I'm seeking comments on a new module I've written, including suggestions for improving its name before I release an initial version to CPAN. This module started as a thought exercise coming out of Abigail's talk at YAPC::NA on Lexical::Attributes and Ingy's talks about Spiffy. It's now reached the point where the basics are working and it might be of interest. The working name is "Object::Local". Here's a quick example of use:
package My::Object; use strict; use Object::Local; give_methods our $self; our $name : Prop; our $color : Prop; sub as_string : Method { return ref($self) . " named '$name' with color '$color'"; } 1; __ELSEWHERE__ use My::Object; my $o = My::Object->new; $o->set_name("xdg")->set_color("orange"); print $o->as_string; __RESULT__ My::Object: named 'xdg' with color 'orange'
At its core, this module helps create inside-out objects. It does some things like Lexical::Attributes and Spiffy, but in some different (better? worse?) ways. Like those modules, it's a bit unusual compared to other object/class generators out there and has some of its own unique approaches:
Suggestions for a better name are welcome. Some criteria I'd like to apply to the naming include:
I've considered variations such as:
Your early feedback on functionality or names is appreciated. When I release the module, I'll have more detailed commentary on the internals, speed benchmarks, and pros/cons versus other approaches.
Thank you,
-xdg
Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: RFC: an unusual inside-out object generator
by simonm (Vicar) on Jul 22, 2005 at 19:53 UTC | |
Re: RFC: an unusual inside-out object generator
by Zaxo (Archbishop) on Jul 22, 2005 at 19:30 UTC | |
Re: RFC: an unusual inside-out object generator
by Jenda (Abbot) on Jul 26, 2005 at 14:58 UTC | |
by xdg (Monsignor) on Jul 26, 2005 at 16:05 UTC |