Function.From
Function.From(functionType as type, function as function) as function
Accetta una funzione unaria function
e crea una nuova funzione con tipo functionType
che costruisce un elenco dagli argomenti e la passa a function
.
Convertire List.Sum in una funzione a due argomenti i cui argomenti vengono aggiunti insieme.
Utilizzo
Function.From(type function (a as number, b as number) as number, List.Sum)(2, 1)
Output
3
Convertire una funzione che accetta un elenco in una funzione a due argomenti.
Utilizzo
Function.From(type function (a as text, b as text) as text, (list) => list{0} & list{1})("2", "1")
Output
"21"