Equinox Online Help - Language Reference - A to Z
ArrayNot |
|
|---|---|
| Applies to | ![]() |
| Syntax | ArrayNot ArrayExpression |
| Action | Performs a logical NOT operation on each element in the array expression. |
| Scope | Usable anywhere |
| Notes | This statement performs the operation a[n] = not a[n] on each element in the array. |
| Category | Arrays |
| See Also | ArrayFind, ArrayFindNext, ArrayGetDimensions, ArraySearch, ArraySearchNext, ArraySetDimensions, ArraySort, ArrayNeg, Vector, VectorSize |
| Example | This example prints 0 0 1 0 1 0 int a[] This example prints 1 0 1 0 int a[][4] |
