in reply to Re: Basic Coding Tips: Parsimonious Parameterization
in thread Basic Coding Tips: Parsimonious Parameterization
#merges the elements of two or more arrays together so that the values + of one # are appended to the end of the previous one sub array_merge{ my(@array1, @array2) = @_; foreach my $element (@array2){ @array1 = (@array1, $element); }#foreach return @array1; }#array_merge
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Basic Coding Tips: Parsimonious Parameterization
by Tanktalus (Canon) on Jan 29, 2005 at 05:09 UTC | |
by wazoox (Prior) on Jan 31, 2005 at 12:37 UTC | |
by bart (Canon) on Jan 31, 2005 at 15:58 UTC |