List.Single
List.Single(list as list) as any
목록에 list
항목이 하나만 있는 경우 해당 항목을 반환합니다. 항목이 두 개 이상 있거나 목록이 비어 있으면 함수가 예외를 throw합니다.
목록에서 {1}단일 값을 찾습니다.
사용법
List.Single({1})
출력
1
{1, 2, 3} 목록에서 단일 값을 찾습니다.
사용법
List.Single({1, 2, 3})
출력
[Expression.Error] There were too many elements in the enumeration to complete the operation.