Função List.tryFindIndex<'T> (F#)
Retorna o índice do primeiro elemento na lista que satisfaz o predicado dado. None de retorno se nenhum tal elemento existe.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
List.tryFindIndex : ('T -> bool) -> 'T list -> int option
// Usage:
List.tryFindIndex predicate list
Parâmetros
predicate
Tipo: 'T ->boolA função para testar os elementos de entrada.
list
Tipo: 'TlistaA lista de entrada.
Valor de retorno
O índice do primeiro elemento para o predicado retorna true, ou None se cada elemento é avaliada como false.
Comentários
Essa função é chamada TryFindIndex em assemblies compilados. Se você está acessando a função de um idioma diferente F#, ou com a reflexão, use este nome.
Exemplo
O exemplo de código a seguir ilustra o uso de List.tryFind e de List.tryFindIndex.
let list1d = [1; 3; 7; 9; 11; 13; 15; 19; 22; 29; 36]
let isEven x = x % 2 = 0
match List.tryFind isEven list1d with
| Some value -> printfn "The first even value is %d." value
| None -> printfn "There is no even value in the list."
match List.tryFindIndex isEven list1d with
| Some value -> printfn "The first even value is at position %d." value
| None -> printfn "There is no even value in the list."
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