Value.As
Value.As(value as any, type as type) as any
指定した型と互換性がある場合は、その値を返します。 これは M の "as" 演算子と同じですが、Number.Type などの識別子の型の参照を指定できる点が異なります。
数値を数値にキャストします。
使用方法
Value.As(123, Number.Type)
出力
123
テキスト値から数値へのキャストを試みます。
使用方法
Value.As("abc", type number)
出力
[Expression.Error] We cannot convert the value "abc" to type Number.