]> wagnertech.de Git - mfinanz.git/blobdiff - SL/MoreCommon.pm
Fehlende Localesläufe aus 4091 und 4093.
[mfinanz.git] / SL / MoreCommon.pm
index 699a6724a777ec0d0a5fce04c4758025e40bd35e..1ee62cca4118ac961e92e5ec3d6833bc2d6b6209 100644 (file)
@@ -96,7 +96,7 @@ will modify the input arrays.
   # append each to each
   @a = qw/a b c/;
   @b = qw/1 2 3/;
   # append each to each
   @a = qw/a b c/;
   @b = qw/1 2 3/;
-  @x = pairwise { "$a$b" } @a, @b;
+  @x = cross { "$a$b" } @a, @b;
   # returns a1, a2, a3, b1, b2, b3, c1, c2, c3
 
 As cross expects an array but returns a list it is not directly chainable
   # returns a1, a2, a3, b1, b2, b3, c1, c2, c3
 
 As cross expects an array but returns a list it is not directly chainable