Get an item at index idx. Note that idx may be any integer, negative or beyond the current length.
(idx int)
| 51 | Len() int |
| 52 | // Get an item at index idx. Note that idx may be any integer, negative or beyond the current length. |
| 53 | Get(idx int) Value |
| 54 | // Set an item at index idx. Note that idx may be any integer, negative or beyond the current length. |
| 55 | // The expected behaviour when it's beyond length is that the array's length is increased to accommodate |
| 56 | // the item. All elements in the 'new' section of the array should be zeroed. |
no outgoing calls