Difference between revisions of "Array.foldl()"

From ZCubes Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by 2 users not shown)
Line 19: Line 19:
 
)
 
)
  
1 2 -1
+
0 1 -1
 +
 
 +
-1 2 -3
  
-1 3 -4
+
-3 3 -6
  
-4 4 -8
+
-6 4 -10
  
-8 5 -13
+
-10 5 -15
  
-13
+
-15
  
  
Line 48: Line 50:
  
 
-13
 
-13
 +
 +
 +
a=1..3;
 +
a.foldr(MINUS,2)
 +
 +
-4 (2-1-2-3)
  
 
==See Also==
 
==See Also==
  
[[Array.foldl()|foldl ]]
+
[[Array.fold()|fold ]]
  
 
[[Array.foldr()|foldr ]]
 
[[Array.foldr()|foldr ]]

Latest revision as of 04:58, 24 April 2020


Array.foldl(SomFunction, SomeStartValue)

At each element, SomeFunction (that can take two parameter values) are called in sequence for element from the left. The second parameter is the last value of evaluation of the given SomeFunction. For the very first element, the SomeStartValue is passed as the second parameter, if present. If no SomeStartValue is provided, it starts with the first two as the pair to start with.


a=1..5; a.foldl( function (last,x) { OUTPUT([last,x,(last-x)]); return(last-x) }, 0 )

0 1 -1

-1 2 -3

-3 3 -6

-6 4 -10

-10 5 -15

-15


a=1..5; a.foldl( function (last,x) { OUTPUT([last,x,(last-x)]); return(last-x) } )

1 2 -1

-1 3 -4

-4 4 -8

-8 5 -13

-13


a=1..3; a.foldr(MINUS,2)

-4 (2-1-2-3)

See Also

fold

foldr