Function.From
Function.From(functionType as type, function as function) as function
단항 함수 function
에서 목록을 생성하고 이를 function
에 전달하여, 형식이 functionType
인 새 함수를 만듭니다.
List.Sum을 두 개의 인수를 받아 서로 더하는 함수로 변환합니다.
사용량
Function.From(type function (a as number, b as number) as number, List.Sum)(2, 1)
출력
3
목록을 가져오는 함수를 두 인수 함수로 변환합니다.
사용량
Function.From(type function (a as text, b as text) as text, (list) => list{0} & list{1})("2", "1")
출력
"21"