function TEAEmpty(const TEA: TExtArray): Boolean;
SCAR Divi 3.34 > Current
Returns true if the length of the given TExtArray TEA is 0.
begin WriteLn(TEAEmpty([1.5, 1.1])); WriteLn(TEAEmpty([])); end.
Output:
0 1