Monks,

I have a very simple (complex) data structure, and would like to know if there would be any short-cuts to my declaration:

my(%lookup)=( 'site1' => {'0' =>'0', '1' =>'0', '2' =>'0', '3' =>'0', '4' =>'0', '5' =>'0', '6' =>'0', '7' =>'0', '8' =>'0', '9' =>'0', '10'=>'0', '11'=>'0', '12'=>'0', '13'=>'0', '14'=>'0', '15'=>'0', '16'=>'0', '17'=>'0', '18'=>'0', '19'=>'0', '20'=>'0', '21'=>'0', '22'=>'0', '23'=>'0',}, 'site2' => {'0'=>'0', ... '23'=>'0',}, } };

In my code I will end up repeating this 24 hour time stamp as the key to my HoH, for each site. Probably 3 dozen sites in all. Any input would be most appreciated.

cheers! -Ev

Good judgement comes with experience. Unfortunately, the experience usually comes from bad judgement.

In reply to building a complex data structure by ministry

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.