Map.ContainsKey<'Key,'Value>, méthode (F#)
Teste si un élément est dans le domaine du mappage.
Espace de noms/Chemin du module : Microsoft.FSharp.Collections
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
member this.ContainsKey : 'Key -> bool (requires comparison)
// Usage:
map.ContainsKey (key)
Paramètres
key
Type : 'KeyTouche de saisie.
Valeur de retour
true si le mappage contient la clé donnée.
Exemple
Le code suivant montre comment utiliser la méthode ContainsKey.
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
Sortie
Plateformes
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informations de version
Versions de bibliothèque principale F#
Prise en charge dans : 2,0, 4,0, portables