Hello,
I’m having the following situation -
On Fixlet Debugger:
// Multiple Tuple
q: ((59, 553);(4, 3587))
A: 59, 553
A: 4, 3587
T: 3.764 ms
I: plural ( integer, integer )
// Sum of the First Items
q: sum of items 0 of ((59, 553);(4, 3587))
A: 63
T: 3.093 ms
I: singular integer
// Sum of the Second Items
q: sum of items 1 of ((59, 553);(4, 3587))
A: 4140
T: 2.318 ms
I: singular integer
// Putting them together in a Tuple
q: (sum of items 0 of ((59, 553);(4, 3587)), sum of items 1 of ((59, 553);(4, 3587)))
A: 63, 4140
T: 1.533 ms
I: singular ( integer, integer )
On The Fixlet Debugger, works correctly…
On Session Relevance , the Sum does not works… I will explain…
(item 3 of it, item 4 of it) of SOME-SESSION-RELEVANCE
Returns Multiple Tuples
59, 553
4, 3587
sum of (items 0 of it) of (item 3 of it , item 4 of it) of SOME-SESSION-RELEVANCE
63
sum of (items 1 of it) of (item 3 of it , item 4 of it) of SOME-SESSION-RELEVANCE
4140
This is the Issue -
(sum of (items 0 of it), sum of (items 1 of it)) of (item 3 of it , item 4 of it) of SOME-SESSION-RELEVANCE
59, 553
4, 3587