Map.Find <' chave, T' > Função (F#)
Procura um elemento no mapa. Se nenhuma vinculação existe no mapa, gera KeyNotFoundException.
Caminho do namespace/módulo: Microsoft.FSharp.Collections.map
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
Map.find : 'Key -> Map<'Key,'T> -> 'T (requires comparison)
// Usage:
Map.find key table
Parâmetros
key
Tipo: 'KeyA chave de entrada.
table
Tipo: Mapa<'Key,'T>O mapa de entrada.
Exceções
Exceção |
Condição |
---|---|
Lançada quando a chave não existe no mapa. |
Valor de retorno
O valor mapeado para a chave fornecida.
Comentários
Esta função é chamada de Find em módulos (assemblies) compilados. Se você estiver acessando a função de um idioma diferente, por exemplo, F# ou através de reflexão, use esse nome.
Exemplo
Os exemplos a seguir mostra como usar Map.filter.
let findAndPrint key map =
printfn "With key %d, found value %A." key (Map.find key map)
let map1 = Map.ofList [ (1, "one"); (2, "two"); (3, "three") ]
let map2 = Map.ofList [ for i in 1 .. 10 -> (i, i*i) ]
try
findAndPrint 1 map1
findAndPrint 2 map1
findAndPrint 3 map2
findAndPrint 5 map2
// The key is not in the map, so this throws an exception.
findAndPrint 0 map2
with
:? System.Collections.Generic.KeyNotFoundException as e -> printfn "%s" e.Message
Saída
Plataformas
O Windows 7, SP2 do Windows Vista, Windows XP SP3, Windows XP Professional x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
Informações sobre versão
O tempo de execução F#
Compatível com: 2.0, 4.0
Silverlight
Compatível com: 3