Functions Index :: A :: ArrayElmCount

[<< up one level]

Module:

array :: properties

Definition:

ArrayElmCount(string array, val value)

Description:

Returns the number of array elements with value value.

Examples:

a = ArrayCreate(3,4,3,3,1,5,4,3,2)

n1 = a.ArrayElmCount(3) # n1 == 4

n2 = a.ArrayElmCount(4) # n2 == 2

 

[<< top]