Funzione Array.iteri<'T> (F#)
Applica la funzione specificata a ogni elemento della matrice.L'Integer passato alla funzione indica l'indice dell'elemento.
Percorso di spazio dei nomi/modulo: Microsoft.FSharp.Collections.Array
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
Array.iteri : (int -> 'T -> unit) -> 'T [] -> unit
// Usage:
Array.iteri action array
Parametri
action
Tipo: int -> 'T -> unitFunzione da applicare a ogni indice ed elemento.
array
Tipo: 'T[]Matrice di input.
Note
Questa funzione è denominata [IterateIndexed] negli assembly compilati.Utilizzare questo nome se si accede alla funzione da un linguaggio diverso da F# o tramite reflection.
Esempio
Nell'esempio di codice riportato di seguito viene illustrata la differenza tra Array.iter, Array.iter2, Array.iteri e Array.iteri2.
let array1 = [| 1; 2; 3 |]
let array2 = [| 4; 5; 6 |]
Array.iter (fun x -> printfn "Array.iter: element is %d" x) array1
Array.iteri(fun i x -> printfn "Array.iteri: element %d is %d" i x) array1
Array.iter2 (fun x y -> printfn "Array.iter2: elements are %d %d" x y) array1 array2
Array.iteri2 (fun i x y ->
printfn "Array.iteri2: element %d of array1 is %d element %d of array2 is %d"
i x i y)
array1 array2
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