I tried that.

Suppose my orginal array is
( a, aba, aaa, aca, bbb, abc )
Suppose my trigger for change is when the elements of the line are all the same - "aaa".

So index goes 0, 1, 2

At index = 2 I splice in 3 lines to replace it, so my array now looks like

( a, aba, replacement1, repalcement2, replacement3, aca, bbb, abc)

Next iterator is index=4, which gives me "replacement2" instead of "aca".

If I'm using something like:

splice(@array, $i, 1, func($array[$i]);
(which I am) and it can return a list the size of which is going to depend on context (such a hw previous eleements of the array had been treated - think of an order form where discount is by group and volume), then the juggling of the index counter is pretty hairy. I've tried this. The resulting code is very far from elegnant and my test harness easily "breaks" it, not least of all when the returned value is an empty list and the primary array gets shrunk. The iterator misses a line! However the worst case is when the replacement is two elements and the second element is a copy of the original. (Think about that!)

In reply to Re: Re: Inserting into an array while stepping through it by Anonymous Monk
in thread Inserting into an array while stepping through it by Anonymous Monk

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.