Function.From
Syntax
Function.From(functionType as type, function as function) as function
About
Takes a unary function function
and creates a new function with the type functionType
that constructs a list out of its arguments and passes it to function
.
Example 1
Converts List.Sum into a two-argument function whose arguments are added together.
Usage
Function.From(type function (a as number, b as number) as number, List.Sum)(2, 1)
Output
3
Example 2
Converts a function taking a list into a two-argument function.
Usage
Function.From(type function (a as text, b as text) as text, (list) => list{0} & list{1})("2", "1")
Output
"21"