Len returns the current array length.
()
| 49 | type DynamicArray interface { |
| 50 | // Len returns the current array length. |
| 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. |
no outgoing calls