http://qs1969.pair.com?node_id=344353


in reply to Re: Making little array babies
in thread Making little array babies

I personally like davido's solution the best, if you can live with the undef items at the end. However I would change the push, in the case where the baby arrays are small to :

push @lol, [ shift(@images), shift(@images), shift(@images) ];

It's just more explicit. The guy that comes after you won't have to think about what is going on here, it's obvious.

Of course if the actual baby arrays are large, or thier length changes programatically, stick with his original code.