Returns the number of items in the array. */
| 61 | |
| 62 | /** Returns the number of items in the array. */ |
| 63 | uint32_t count() const { |
| 64 | return (uint32_t)_vec.size(); |
| 65 | } |
| 66 | |
| 67 | /** Returns a reference to the MValue of the item at the given index. |
| 68 | If the index is out of range, returns an empty MValue. */ |