List.isEmpty<'T> İşlevi (F#)
Liste boş olup olmadýðýný sýnar.
Ad alanı/modül yol: Microsoft.FSharp.Collections.List
Derleme: FSharp.Core (FSharp.Core.dll),
// Signature:
List.isEmpty : 'T list -> bool
// Usage:
List.isEmpty list
Parametreler
list
Type: 'TlistGiriş listesi.
Dönüş Değeri
trueListe boşsa. Aksi takdirde, döner false.
Notlar
Bu işlev adlı IsEmpty kodları derlenmiş derlemeleri. İşlev .net Dili dışındaki F# veya yansıtma üzerinden erişiyorsanız, bu adı kullanın.
Örnek
Aşağıdaki kod nasıl kullanılacağını gösterir List.isEmpty.
let printList list1 =
if (List.isEmpty list1) then
printfn "There are no elements in this list."
else
printfn "This list contains the following elements:"
List.iter (fun elem -> printf "%A " elem) list1
printfn ""
printList [ "test1"; "test2" ]
printList [ ]
Çı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