Expand description
Index-assign type checking (arr[i] = value).
Validates:
- The index is an
intorbyte - The value type matches the array’s element type
bytewidens tointwhen the array element type isint- Assigning
nullis always allowed (absence of value)