Type.ForFunction
Belirli bir parametreyle ve döndürülen tür kısıtlamalarıyla işlevleri temsil eden bir tür döndürür.
Syntax
Type.ForFunction(
signature as record,
min as number
) as type
Remarks
Bir function type
oluşturur, bunu signature
, ReturnType
ve Parameters
ve min
, işlevin çalıştırılabilmesi için gerekli olan minimum sayıda bağımsız değişkenden gerçekleştirir.
Examples
Example #1
X adında bir sayı parametresi alan ve bir sayı döndüren bir işlevin türünü oluşturur.
Type.ForFunction([ReturnType = type number, Parameters = [X = type number]], 1)
Result:
type function (X as number) as number
Category
Type