Function.From
Function.From(functionType as type, function as function) as function
Vezme unární funkci function
a vytvoří novou funkci s typem functionType
, který vytvoří seznam z argumentů a předá ji function
.
Převede List.Sum na funkci se dvěma argumenty, jejíž argumenty se sčítají.
využití
Function.From(type function (a as number, b as number) as number, List.Sum)(2, 1)
Výstup
3
Převede funkci se seznamem na funkci se dvěma argumenty.
využití
Function.From(type function (a as text, b as text) as text, (list) => list{0} & list{1})("2", "1")
výstupní
"21"