List of Import References :
See Array
See BOOL
See DENOTATION
See Nat
SIGNATURE ArrayFold [data]
$Date: 2010-09-30 18:24:17 +0200 (Do, 30. Sep 2010) $ ($Revision: 616 $)
-- reductions of arrays SORT data IMPORT Array[data] ONLY array FUN / \ : (data**data->data)**array[data]->data -- left and right folding of arrays -- informally: -- + / [a,b,...,y,z] == a + (b + (...(y + z)...)) -- + \ [a,b,...,y,z] == z + (y + (...(b + a)...)) -- undefined for empty arrays
next node: ArrayMap,
prev node: ArrayFilter,
up to node: Subsystem Arrays