Funzione List.fold<'T,'State> (F#)
Applica una funzione f a ogni elemento della raccolta, eseguendo il threading di un argomento dell'accumulatore attraverso il calcolo. La funzione fold utilizza il secondo argomento e applica la funzione f a questo e al primo elemento dell'elenco. Il risultato viene quindi passato alla funzione f insieme al secondo elemento e così via. Restituisce il risultato finale. Se la funzione di input è f e gli elementi sono i0...iN, tale funzione calcola f (... (f s i0) i1 ...) iN.
Percorso di spazio dei nomi/modulo: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
List.fold : ('State -> 'T -> 'State) -> 'State -> 'T list -> 'State
// Usage:
List.fold folder state list
Parametri
folder
Tipo: 'State -> 'T -> 'StateFunzione da utilizzare per aggiornare lo stato in base agli elementi di input.
state
Tipo: 'StateStato iniziale.
list
Tipo: 'T listElenco di input.
Valore restituito
Valore dello stato finale.
Note
Questa funzione è denominata Fold negli assembly compilati. Utilizzare questo nome se si accede alla funzione da un linguaggio diverso da F# o tramite reflection.
Esempio
Nell'esempio seguente viene illustrato l'utilizzo di List.fold
let data = [("Cats",4);
("Dogs",5);
("Mice",3);
("Elephants",2)]
let count = List.fold (fun acc (nm,x) -> acc+x) 0 data
printfn "Total number of animals: %d" count
Nell'esempio di codice seguente vengono illustrati utilizzi aggiuntivi di List.fold. Si noti che esistono funzioni della libreria che incapsulano già la funzionalità implementata di seguito. Ad esempio, List.sum è disponibile per fare la somma di tutti gli elementi di un elenco.
let sumList list = List.fold (fun acc elem -> acc + elem) 0 list
printfn "Sum of the elements of list %A is %d." [ 1 .. 3 ] (sumList [ 1 .. 3 ])
// The following example computes the average of a list.
let averageList list = (List.fold (fun acc elem -> acc + float elem) 0.0 list / float list.Length)
// The following example computes the standard deviation of a list.
// The standard deviation is computed by taking the square root of the
// sum of the variances, which are the differences between each value
// and the average.
let stdDevList list =
let avg = averageList list
sqrt (List.fold (fun acc elem -> acc + (float elem - avg) ** 2.0 ) 0.0 list / float list.Length)
let testList listTest =
printfn "List %A average: %f stddev: %f" listTest (averageList listTest) (stdDevList listTest)
testList [1; 1; 1]
testList [1; 2; 1]
testList [1; 2; 3]
// List.fold is the same as to List.iter when the accumulator is not used.
let printList list = List.fold (fun acc elem -> printfn "%A" elem) () list
printList [0.0; 1.0; 2.5; 5.1 ]
// The following example uses List.fold to reverse a list.
// The accumulator starts out as the empty list, and the function uses the cons operator
// to add each successive element to the head of the accumulator list, resulting in a
// reversed form of the list.
let reverseList list = List.fold (fun acc elem -> elem::acc) [] list
printfn "%A" (reverseList [1 .. 10])
Output
Piattaforme
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informazioni sulla versione
Versioni della libreria di base F#
Supportato in: 2,0, 4,0, portabile