The ArrayOperationType enumeration contains types of operation with array elements.
It is used by the following methods:
| Value | Brief description |
| 0 | Plus. Operands summation - +. |
| 1 | Minus. Operands difference - -. |
| 2 | Multiply. Operands product - *. |
| 3 | Division. Quotient of two operands - /. |
| 4 | Modulo. Remainder of two operands division - Mod. |
| 5 | IntegerDivision. Integer part of division of two operands - Div. |
| 6 | Exponent. Elementwise raising to power. |
| 7 | Prefix. Elementwise adding of prefix. It is relevant for string arrays. |
| 8 | Suffix. Elementwise adding of suffix. It is relevant for string arrays. |
| 9 | Fill. Filling of array with the specified value. All array elements are overwritten. |
See also: