Function.From
Crea una funzione con una firma di parametro specifica su una funzione che accetta un singolo argomento di elenco
Syntax
Function.From(
functionType as type,
function as function
) as function
Remarks
Accetta una funzione unaria function
e crea una nuova funzione con tipo functionType
che costruisce un elenco dagli argomenti e la passa a function
.
Examples
Example #1
Converte List.Sum in una funzione a due argomenti i cui argomenti vengono aggiunti insieme
Function.From(type function (a as number, b as number) as number, List.Sum)(2, 1)
Result:
3
Example #2
Converte una funzione che accetta un elenco in una funzione a due argomenti
Function.From(type function (a as text, b as text) as text, (list) => list{0} & list{1})("2", "1")
Result:
"21"
Category
Function