Partilhar via


Map.Find <' chave, T' > Função (F#)

Pesquisa um elemento no mapa.Se nenhuma associação existe no mapa, aumenta KeyNotFoundException.

Namespace/Module Path: 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: 'Key

    A chave de entrada.

  • table
    Tipo: mapa<'Key,'T>

    O mapa de entrada.

Exceções

Exceção

Condição

KeyNotFoundException

Gerado quando a tecla não existir no mapa.

Valor de retorno

O valor mapeado para a chave determinada.

Comentários

Essa função é chamada Find 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 exemplos a seguir mostram 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 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

Consulte também

Referência

Módulo de Collections.Map (F#)

Microsoft.FSharp.Collections Namespace (F#)