Compartilhar via


Map.ContainsKey <'Key,'Valor> Método (F#)

Se um elemento está no domínio do mapa de testes.

Caminho do namespace/módulo: Microsoft.FSharp.Collections

Assembly: FSharp.Core (em FSharp.Core.dll)

// Signature:
member this.ContainsKey : 'Key -> bool (requires comparison)

// Usage:
map.ContainsKey (key)

Parâmetros

  • key
    Tipo: 'Key

    A chave de entrada.

Valor de retorno

trueSe o mapa contém a chave fornecida.

Exemplo

O código a seguir mostra como usar o ContainsKey método.

let map1 = Map.ofList [ (1, "one"); (2, "two"); (3, "three") ]
let findKeyAndPrint key (map : Map<int,string>) =
    if (map.ContainsKey key) then
        printfn "The specified map contains the key %d." key
    else
        printfn "The specified map does not contain the key %d." key
findKeyAndPrint 1 map1
findKeyAndPrint 0 map1

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

Consulte também

Referência

Collections.map <'Key,' valor > Classe (F#)

Microsoft.FSharp.Collections Namespace (F#)