ItemExpression.From
関数の本文の抽象構文ツリー (AST) を返します。
Syntax
ItemExpression.From(
function as function
) as record
Remarks
item expression に正規化された function
の本文の抽象構文ツリー (AST) を返します:
- 関数は 1 引数ラムダである必要があります。
- 関数パラメーターへのすべての参照は
ItemExpression.Item
と置き換えられます。 - AST は次の種類のノードだけを含むように簡素化されます:
Constant
Invocation
Unary
Binary
If
FieldAccess
function
の本文に対して item 式の AST が返され ない場合は、エラーが発生します。Examples
Example #1
関数 <code>each _ <> null</code> の本文の AST を返します
ItemExpression.From(each _ <> null)
Result:
[
Kind = "Binary",
Operator = "NotEquals",
Left = ItemExpression.Item,
Right =
[
Kind = "Constant",
Value = null
]
]
Category
Table.Table construction