Função Array.iteri<'T> (F#)
Aplica a função fornecida para cada elemento da matriz. O inteiro passado para a função indica o índice do elemento.
Caminho do namespace/módulo:: 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 -> unitA função a ser aplicada a cada índice e elemento.
array
Tipo: 'T []A matriz de entrada.
Comentários
Essa função é chamada de IterateIndexed em assemblies compilados. Se você estiver acessando a função a partir de uma linguagem diferente de F#, ou com a reflexão, use esse 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
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informações de versão
Versões da biblioteca principal F#
Suportado em: 2.0, 4.0, Portátil