On 11/13/05, Tom Allison <[EMAIL PROTECTED]> wrote:
> my $A = [1,2,3,4,5,6,7,8,9];
> my $B = [11,12,13,14,15,16,17,18,19];
>
> timethese(1000,
> {
> 'plain' => 'my $array = [$A, $B];',
> 'loopy' => 'push @$A, $_ foreach @$B;'
> });
Another im
John W. Krahn wrote:
Tom Allison wrote:
John W. Krahn wrote:
Mike Blezien wrote:
what is the most effecient way to combine multiple array refs into one
array ref, IE:
my $arrayrefA = ['1',2','3'];
my $arrayrefB = ['4','5','6'];
my $arrayrefC = ['7','8','9'];
my $allarrayref = (Combine $a
Tom Allison wrote:
> John W. Krahn wrote:
>> Mike Blezien wrote:
>>
>>> what is the most effecient way to combine multiple array refs into one
>>> array ref, IE:
>>>
>>> my $arrayrefA = ['1',2','3'];
>>> my $arrayrefB = ['4','5','6'];
>>> my $arrayrefC = ['7','8','9'];
>>>
>>> my $allarrayref = (Co
John W. Krahn wrote:
Mike Blezien wrote:
Hello,
Hello,
what is the most effecient way to combine multiple array refs into one
array ref, IE:
my $arrayrefA = ['1',2','3'];
my $arrayrefB = ['4','5','6'];
my $arrayrefC = ['7','8','9'];
my $allarrayref = (Combine $arrayrefA $arrayrefB $arra
Thanks John, this helps get me in the right direction of what I'm trying to
accomplish :)
Mickalo
John W. Krahn wrote:
Mike Blezien wrote:
Hello,
Hello,
what is the most effecient way to combine multiple array refs into one
array ref, IE:
my $arrayrefA = ['1',2','3'];
my $arrayrefB =
Mike Blezien wrote:
> Hello,
Hello,
> what is the most effecient way to combine multiple array refs into one
> array ref, IE:
>
> my $arrayrefA = ['1',2','3'];
> my $arrayrefB = ['4','5','6'];
> my $arrayrefC = ['7','8','9'];
>
> my $allarrayref = (Combine $arrayrefA $arrayrefB $arrayrefC)
So