הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
Fully qualified name: Std.Core.Length
function Length<'T>(a : 'T[]) : Int
Summary
Returns the number of elements in the input array a.
Input
a
Input array.
Output
The total number of elements in the input array a.
Example
Message($"{ Length([0, 0, 0]) }"); // Prints 3