Freigeben über


Map.containsKey<'Key,'T>-Funktion (F#)

Prüft, ob sich ein Element in der Domäne der Zuordnung befindet.

Namespace/Modulpfad: Microsoft.FSharp.Collections.Map

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

// Signature:
Map.containsKey : 'Key -> Map<'Key,'T> -> bool (requires comparison)

// Usage:
Map.containsKey key table

Parameter

  • key
    Typ: 'Key

    Der Eingabeschlüssel.

  • table
    Typ: Map<'Key,'T>

    Die Eingabezuordnung.

Rückgabewert

true, wenn die Zuordnung den Schlüssel enthält.

Hinweise

Der Name dieser Funktion in kompilierten Assemblys lautet ContainsKey.Verwenden Sie diesen Namen, wenn Sie in einer anderen .NET-Sprache als F# oder durch Reflektion auf die Funktion zugreifen.

Beispiel

Im folgenden Code wird die Verwendung von Map.containsKey veranschaulicht.

let map1 = Map.ofList [ (1, "one"); (2, "two"); (3, "three") ]
let findKeyAndPrint key map =
    if (Map.containsKey key map) 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

Output

  
  

Plattformen

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Versionsinformationen

F#-Kern-Bibliotheks-Versionen

Unterstützt in: 2,0, 4,0, portablen

Siehe auch

Referenz

Collections.Map-Modul (F#)

Microsoft.FSharp.Collections-Namespace (F#)