Functions Index :: A :: ArrayLess

[<< up one level]

Module:

array :: functions

Definition:

ArrayLess(string array1, string array2)

Description:

Returns true if all elements of array1 are less than the corresponding elements of array2 (ie array1[i] < array2[i] for all i).

Examples:

a1 = "2,3,6,8,12,5,4"

a2 = "1,2,5,7,11,4,3"

a3 = "2,2,5,7,12,5,4"

b1 = a2.ArrayLess(a1) # b1 == true

b2 = a2.ArrayLess(a3) # b2 == false

 

[<< top]

  $notes