Long ago in the pre Moose days I converted a great deal of data into a collection of hash
tables with simple-minded code
like (large hunks redacted/removed for brevity) the following:
package Chess::PGN::Moves;
use 5.006;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(
%King_Moves
);
our $VERSION = '0.05';
use vars qw(
%King_Moves
);
%King_Moves = (
a1 => [qw(a2 b2 b1)],
b1 => [qw(a2 b2 c2 a1 c1)],
c1 => [qw(b2 c2 d2 b1 d1)],
);
1;
__END__
My question now is what is the Moose equivalent of such a thing. That is how do I a take a collection
of static information (all hash tables as it turns out) and bring them into the 21st century
object-wise? It is clear that this is do-able in terms of a dynamic hash, but I don't understand
the plumbing well enough to abstract from that to what I need for pre-declared material. I've seen
references to
http://search.cpan.org/~drolsky/Moose-1.21/lib/Moose/Meta/Attribute/Native.pm which I
find relatively clear, but again, it doesn't seem to speak to the notion of pre-declared information.
--hsm
"Never try to teach a pig to sing...it wastes your time and it annoys the pig."
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.