Difference between revisions of "TEAEmpty"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function TEAEmpty(const TEA: TExtArray): Boolean; </source> ==Availability== SCAR Divi 3.34 > Current ==Description== Returns ...") |
(No difference)
|
Latest revision as of 16:55, 23 April 2012
Contents
Definition
function TEAEmpty(const TEA: TExtArray): Boolean;
Availability
SCAR Divi 3.34 > Current
Description
Returns true if the length of the given TExtArray TEA is 0.
Example
begin WriteLn(TEAEmpty([1.5, 1.1])); WriteLn(TEAEmpty([])); end.
Output:
0 1