I have a list, and sometimes I want to read-ahead (next element) in the list and compare it to my current element (while the index stays on my current element)

If there's a next element (i.e. I'm not out of bounds) then I'll grab a value. If there's no next element then I'm done.

This works ..........

my $next_version_key = $ordered_list->[($i+1)]->[0] if( $ordered_list->[($i+1)] );
but then I thought I'd try ............
my $next_version_key = $ordered_list->[($i+1)]->[0] || undef;
and that added ..........
[] to @{ $ordered_list }
which meant my list had grown. The next time round, it added ......
[ undef, {} ]
next time round ..............
[ ${\$VAR1->[3][0]}, {} ]
usw. The same happens if I use ............
my $next_version_key = $ordered_list->[($i+1)]->[0] || 0;
Now, it seems as though $ordered_list->[($i+1)]->[0] is evalutaing to true even though it's out-of-bounds but what strange behaviour!!

Can someone throw some light on that for me? This isn't critical as I'm using ...

my $next_version_key = $ordered_list->[($i+1)]->[0] if( $ordered_list->[($i+1)] );
which my prefered way .... I'm just interested in the internals with this prob.

Cheers -Ants


In reply to Array mysteriously growing by AntsPants

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.