Metodo Map.ContainsKey<'Key,'Value> (F#)
Verifica se un elemento si trova nel dominio della mappa.
Percorso di spazio dei nomi/modulo: Microsoft.FSharp.Collections
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
member this.ContainsKey : 'Key -> bool (requires comparison)
// Usage:
map.ContainsKey (key)
Parametri
key
Tipo: 'KeyChiave di input.
Valore restituito
true se la mappa contiene la chiave specificata.
Esempio
Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo 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
Output
Piattaforme
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informazioni sulla versione
Versioni della libreria di base F#
Supportato in: 2,0, 4,0, portabile