projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ecd0ca8
)
Dokufix
author
Sven Schöling
<s.schoeling@linet-services.de>
Wed, 18 Mar 2009 10:24:01 +0000
(10:24 +0000)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Wed, 18 Mar 2009 10:24:01 +0000
(10:24 +0000)
SL/MoreCommon.pm
patch
|
blob
|
history
diff --git
a/SL/MoreCommon.pm
b/SL/MoreCommon.pm
index
699a672
..
1ee62cc
100644
(file)
--- 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