Aracılığıyla paylaş


Map.ContainsKey<'Key,'Value> Yöntemi (F#)

Eşleme etki alanında öğenin bulunup bulunmadığını sınar.

Ad alanı/modül yolu: Microsoft.FSharp.Collections

Derleme: FSharp.Core (FSharp.Core.dll),

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

// Usage:
map.ContainsKey (key)

Parametreler

  • key
    Türü:'Key

    Giriş anahtarı.

Dönüş Değeri

trueharitası verilen anahtar içeriyorsa.

Örnek

Aşağıdaki kod nasıl kullanılacağını gösterir ContainsKey yöntemi.

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

Çıktı

  
  

Platformlar

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

Sürüm Bilgisi

F# Çekirdek Kitaplığı sürümleri

Desteklenen: 2.0, 4.0, Portable

Ayrıca bkz.

Başvuru

Collections.Map<'Key,'Value> Sınıfı (F#)

Microsoft.FSharp.Collections İsim Uzayı (F#)