Functions Index :: A :: ArrayNot
Module:
Definition:
ArrayNot(string array)
Description:
Applies the Not function to all array elements (ie performs a NOT to array elements) and returns the resulting array.
Examples:
a1 = "true,true,false,true"
a2 = a1.ArrayNot()
# a2 == "false,false,true,false"