Array.iteri <'T>. Função (F#)
Aplica a função fornecida para cada elemento da matriz.Toda passado para a função indica o índice do elemento.
Namespace/Module Path: Microsoft.FSharp.Collections.Array
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
Array.iteri : (int -> 'T -> unit) -> 'T [] -> unit
// Usage:
Array.iteri action array
Parâmetros
action
Tipo: int-> 'T ->unidadeA função para aplicar a cada índice e um elemento.
array
Tipo: 'T[]A matriz de entrada.
Comentários
Essa função é chamada [IterateIndexed] em assemblies compilados.Se você está acessando a função de um idioma diferente F#, ou com a reflexão, use este nome.
Exemplo
Os seguintes exemplos de código mostram as diferenças entre 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
Saída
Plataformas
O windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informações de Versão
Versões da biblioteca principal de F#
Suportado em: 2,0, 4,0, portáteis