X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/f30b6f52b1684388cebc0878b73c39c6b1040749..06211d74ea81c20cd935a9f35df45a6f76590692:/SL/MoreCommon.pm?ds=sidebyside diff --git a/SL/MoreCommon.pm b/SL/MoreCommon.pm index 699a6724a..1ee62cca4 100644 --- a/SL/MoreCommon.pm +++ b/SL/MoreCommon.pm @@ -96,7 +96,7 @@ will modify the input arrays. # 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