List.isEmpty<'T> 함수(F#)
목록이 비어 있는지 여부를 테스트합니다.
네임스페이스/모듈 경로: Microsoft.FSharp.Collections.List
어셈블리: FSharp.Core(FSharp.Core.dll)
// Signature:
List.isEmpty : 'T list -> bool
// Usage:
List.isEmpty list
매개 변수
list
형식: 'Tlist입력 목록입니다.
반환 값
목록이 빈 경우 true입니다.그렇지 않으면 false을 반환합니다.
설명
컴파일된 어셈블리에서 이 함수의 이름은 IsEmpty입니다.F# 이외의 .NET 언어에서 함수에 액세스하거나 리플렉션을 통해 함수에 액세스하는 경우 이 이름을 사용합니다.
예제
다음 코드에서는 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 [ ]
Output
플랫폼
Windows Windows 서버 2012, Windows Server 2008 R2, Windows 7, 8
버전 정보
F# 코어 라이브러리 버전
지원: 2.0, 4.0, 노트북