Value.Is
Value.Is(value as any, type as type) as logical
Determina se un valore è compatibile con il tipo specificato. È equivalente all'operatore "is" in M, con l'eccezione che può accettare riferimenti di tipo identificatore, ad esempio Number.Type.
Confronta due modi per determinare se un numero è compatibile con il numero tipo.
Utilizzo
Value.Is(123, Number.Type) = (123 is number)
Output
true