Functions Index :: A :: ArrayGreater
Module:
Definition:
ArrayGreater(string array1, string array2)
Description:
Returns true if all elements of array1 are greater 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 = a1.ArrayGreater(a2) # b1 == true
b2 = a1.ArrayGreater(a3) # b2 == false
$notes